using System; namespace IBatisNet.Common.Test.Domain { /// /// Summary description for Document. /// public abstract class Document { private DateTime _date = DateTime.MinValue; private int _nb = int.MinValue; public DateTime Creation { get { return _date;} set { _date = value;} } public int PageNumber { get { return _nb;} } } }