From: <jul...@us...> - 2010-09-01 17:24:25
|
Revision: 5175 http://nhibernate.svn.sourceforge.net/nhibernate/?rev=5175&view=rev Author: julian-maughan Date: 2010-09-01 17:24:19 +0000 (Wed, 01 Sep 2010) Log Message: ----------- Adding file missing from rev. 5173 commit Added Paths: ----------- trunk/nhibernate/src/NHibernate.Test/NHSpecificTest/NH2279/A.cs Added: trunk/nhibernate/src/NHibernate.Test/NHSpecificTest/NH2279/A.cs =================================================================== --- trunk/nhibernate/src/NHibernate.Test/NHSpecificTest/NH2279/A.cs (rev 0) +++ trunk/nhibernate/src/NHibernate.Test/NHSpecificTest/NH2279/A.cs 2010-09-01 17:24:19 UTC (rev 5175) @@ -0,0 +1,47 @@ +using System; +using System.Collections; +using System.Collections.Generic; + +namespace NHibernate.Test.NHSpecificTest.NH2279 +{ + public class A + { + private int? _id; + private string _name; + private IList<string> _items = new List<string>(); + private IList<B> _bs = new List<B>(); + + public A() + { + } + + public A(string name) + { + Name = name; + } + + public int? Id + { + get { return _id; } + set { _id = value; } + } + + public string Name + { + get { return _name; } + set { _name = value; } + } + + public IList<string> Items + { + get { return _items; } + set { _items = value; } + } + + public IList<B> Bs + { + get { return _bs; } + set { _bs = value; } + } + } +} This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |