PageRenderTime 44ms CodeModel.GetById 19ms RepoModel.GetById 0ms app.codeStats 0ms

/CmsData/FamilyExtra.cs

https://bitbucket.org/mahalowe/bvcms
C# | 31 lines | 24 code | 1 blank | 6 comment | 0 complexity | 970d7d84c8fe42b63bd7fcce6aec1faf MD5 | raw file
Possible License(s): CC-BY-SA-3.0, Apache-2.0, BSD-3-Clause, LGPL-2.1, MPL-2.0-no-copyleft-exception, AGPL-3.0
  1. /* Author: David Carroll
  2. * Copyright (c) 2008, 2009 Bellevue Baptist Church
  3. * Licensed under the GNU General Public License (GPL v2)
  4. * you may not use this code except in compliance with the License.
  5. * You may obtain a copy of the License at http://bvcms.codeplex.com/license
  6. */
  7. using System;
  8. using System.Linq;
  9. using UtilityExtensions;
  10. using System.Text;
  11. using System.Data.Linq;
  12. using System.Data.Linq.Mapping;
  13. using System.Data;
  14. using System.Collections.Generic;
  15. using System.Reflection;
  16. using System.Linq.Expressions;
  17. using System.ComponentModel;
  18. using System.Transactions;
  19. using System.Text.RegularExpressions;
  20. using System.Threading;
  21. namespace CmsData
  22. {
  23. public partial class FamilyExtra
  24. {
  25. partial void OnCreated()
  26. {
  27. TransactionTime = new DateTime(1900, 1, 1);
  28. }
  29. }
  30. }