[Nugsoft-commits] nugsoft/nUGSoft.Entities EntityBase.cs,1.3,1.4
Brought to you by:
javery,
jimholmesoh
|
From: Jim H. <jim...@us...> - 2006-01-11 02:14:38
|
Update of /cvsroot/nugsoft/nugsoft/nUGSoft.Entities In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25361/nUGSoft.Entities Modified Files: EntityBase.cs Log Message: Added default ctor to support ObjectDataSource Index: EntityBase.cs =================================================================== RCS file: /cvsroot/nugsoft/nugsoft/nUGSoft.Entities/EntityBase.cs,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** EntityBase.cs 4 Dec 2005 20:49:33 -0000 1.3 --- EntityBase.cs 11 Jan 2006 02:14:29 -0000 1.4 *************** *** 5,9 **** using System.Reflection; - using nUGSoft.Entities.Errors; using nUGSoft.Entities.Validation; --- 5,8 ---- *************** *** 14,17 **** --- 13,20 ---- public abstract class EntityBase { + + public EntityBase() + { + } #region IsModified Logic *************** *** 207,211 **** } } ! public static void Update(EntityBase ent) { --- 210,214 ---- } } ! public static void Update(EntityBase ent) { |