/CmsData/FamilyExtra.cs
https://bitbucket.org/mahalowe/bvcms · C# · 31 lines · 24 code · 1 blank · 6 comment · 0 complexity · 970d7d84c8fe42b63bd7fcce6aec1faf MD5 · raw file
- /* Author: David Carroll
- * Copyright (c) 2008, 2009 Bellevue Baptist Church
- * Licensed under the GNU General Public License (GPL v2)
- * you may not use this code except in compliance with the License.
- * You may obtain a copy of the License at http://bvcms.codeplex.com/license
- */
- using System;
- using System.Linq;
- using UtilityExtensions;
- using System.Text;
- using System.Data.Linq;
- using System.Data.Linq.Mapping;
- using System.Data;
- using System.Collections.Generic;
- using System.Reflection;
- using System.Linq.Expressions;
- using System.ComponentModel;
- using System.Transactions;
- using System.Text.RegularExpressions;
- using System.Threading;
-
- namespace CmsData
- {
- public partial class FamilyExtra
- {
- partial void OnCreated()
- {
- TransactionTime = new DateTime(1900, 1, 1);
- }
- }
- }