Author: gbayon
Date: Sat Apr 29 00:55:03 2006
New Revision: 398103

URL: http://svn.apache.org/viewcvs?rev=398103&view=rev
Log:
- Updated for .NET V1

Modified:
    ibatis/trunk/cs/mapper/IBatisNet.DataMapper.Test/Domain/Nullable.cs

Modified: ibatis/trunk/cs/mapper/IBatisNet.DataMapper.Test/Domain/Nullable.cs
URL: 
http://svn.apache.org/viewcvs/ibatis/trunk/cs/mapper/IBatisNet.DataMapper.Test/Domain/Nullable.cs?rev=398103&r1=398102&r2=398103&view=diff
==============================================================================
--- ibatis/trunk/cs/mapper/IBatisNet.DataMapper.Test/Domain/Nullable.cs 
(original)
+++ ibatis/trunk/cs/mapper/IBatisNet.DataMapper.Test/Domain/Nullable.cs Sat Apr 
29 00:55:03 2006
@@ -9,6 +9,10 @@
     public class NullableClass
     {
 
+               public NullableClass()
+               {
+               }
+
 #if dotnet2
         private int _id = int.MinValue;
         private bool? _testBool = null;
@@ -23,10 +27,6 @@
         private Int64? _testInt64 = null;
         private Single? _testSingle = null;
 
-        public NullableClass()
-        {
-        }
-
         public NullableClass(Int32? id)
         {
             _testInt32 = id;
@@ -117,6 +117,11 @@
         private Int32 _testInt32 = 0;
         private Int64 _testInt64 = 0;
         private Single _testSingle = 0;
+
+               public NullableClass(int id)
+               {
+                       _id = id;
+               }
 
         public int Id
         {


Reply via email to