Update of /cvsroot/nhibernate/nhibernate/src/NHibernate.DomainModel
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32762
Modified Files:
Master.cs Single.cs
Log Message:
Initialized variables for tests.
Index: Master.cs
===================================================================
RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate.DomainModel/Master.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** Master.cs 3 Jun 2004 14:29:00 -0000 1.2
--- Master.cs 29 Jul 2004 13:05:28 -0000 1.3
***************
*** 18,22 ****
private IDictionary _outgoing = new Hashtable();
private string _name = "master";
! private DateTime _stamp;
// private BigDecimal bigDecimal = new BigDecimal("1234.123"); TODO: how to do in .net
private int _x;
--- 18,25 ----
private IDictionary _outgoing = new Hashtable();
private string _name = "master";
! // since this is a version column a value should be set. NHibernate is unable
! // to set it right now because it checks to see if value==null -> since this
! // is a struct it is not null...
! private DateTime _stamp = DateTime.Now;
// private BigDecimal bigDecimal = new BigDecimal("1234.123"); TODO: how to do in .net
private int _x;
Index: Single.cs
===================================================================
RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate.DomainModel/Single.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** Single.cs 28 Jul 2004 03:53:19 -0000 1.2
--- Single.cs 29 Jul 2004 13:05:28 -0000 1.3
***************
*** 14,18 ****
private string _string;
//<bag>
! private IList _several;
public string Id
--- 14,18 ----
private string _string;
//<bag>
! private IList _several = new ArrayList();
public string Id
|