You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ibatis.apache.org by ro...@apache.org on 2005/03/31 03:59:38 UTC

svn commit: r159557 - incubator/ibatis/trunk/cs/mapper/IBatisNet.DataMapper.Test/Domain/Sample.cs

Author: roberto
Date: Wed Mar 30 17:59:38 2005
New Revision: 159557

URL: http://svn.apache.org/viewcvs?view=rev&rev=159557
Log:
+ Adding missing C# DataMapper NUnit domain class!

Added:
    incubator/ibatis/trunk/cs/mapper/IBatisNet.DataMapper.Test/Domain/Sample.cs

Added: incubator/ibatis/trunk/cs/mapper/IBatisNet.DataMapper.Test/Domain/Sample.cs
URL: http://svn.apache.org/viewcvs/incubator/ibatis/trunk/cs/mapper/IBatisNet.DataMapper.Test/Domain/Sample.cs?view=auto&rev=159557
==============================================================================
--- incubator/ibatis/trunk/cs/mapper/IBatisNet.DataMapper.Test/Domain/Sample.cs (added)
+++ incubator/ibatis/trunk/cs/mapper/IBatisNet.DataMapper.Test/Domain/Sample.cs Wed Mar 30 17:59:38 2005
@@ -0,0 +1,167 @@
+using System;
+
+namespace IBatisNet.DataMapper.Test.Domain
+{
+	/// <summary>
+	/// Summary description of Sample.
+	/// </summary>
+	public class Sample
+	{
+		private int _firstId;
+		private int _secondId;
+		private int _thirdId;
+		private int _fourthId;
+		private int _fifthId;
+		private int _sequenceId;
+		private int _distributedId;
+		private string _sampleChar;
+		private decimal _sampleDecimal;
+		private decimal _sampleMoney;
+		private System.DateTime _sampleDate;
+		private System.DateTime _sequenceDate;
+
+		public int FirstId
+		{
+			get
+			{
+				return _firstId; 
+			}
+			set
+			{ 
+				_firstId = value; 
+			}
+		}
+
+		public int SecondId
+		{
+			get
+			{
+				return _secondId; 
+			}
+			set
+			{ 
+				_secondId = value; 
+			}
+		}
+
+		public int ThirdId
+		{
+			get
+			{
+				return _thirdId; 
+			}
+			set
+			{ 
+				_thirdId = value; 
+			}
+		}
+
+		public int FourthId
+		{
+			get
+			{
+				return _fourthId; 
+			}
+			set
+			{ 
+				_fourthId = value; 
+			}
+		}
+
+		public int FifthId
+		{
+			get
+			{
+				return _fifthId; 
+			}
+			set
+			{ 
+				_fifthId = value; 
+			}
+		}
+
+		public int SequenceId
+		{
+			get
+			{
+				return _sequenceId; 
+			}
+			set
+			{ 
+				_sequenceId = value; 
+			}
+		}
+
+		public int DistributedId
+		{
+			get
+			{
+				return _distributedId; 
+			}
+			set
+			{ 
+				_distributedId = value; 
+			}
+		}
+
+		public string SampleChar
+		{
+			get
+			{
+				return _sampleChar; 
+			}
+			set
+			{ 
+				_sampleChar = value; 
+			}
+		}
+
+		public decimal SampleDecimal
+		{
+			get
+			{
+				return _sampleDecimal; 
+			}
+			set
+			{ 
+				_sampleDecimal = value; 
+			}
+		}
+
+		public decimal SampleMoney
+		{
+			get
+			{
+				return _sampleMoney; 
+			}
+			set
+			{ 
+				_sampleMoney = value; 
+			}
+		}
+		
+		public System.DateTime SampleDate
+		{
+			get
+			{
+				return _sampleDate; 
+			}
+			set
+			{ 
+				_sampleDate = value; 
+			}
+		}
+
+		public System.DateTime SequenceDate
+		{
+			get
+			{
+				return _sequenceDate; 
+			}
+			set
+			{ 
+				_sequenceDate = value; 
+			}
+		}
+	}
+}