using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oProject { private int _recId = 0; public int recId { get { return this._recId; } set { this._recId = value; } } private int _categoryId = 0; public int categoryId { get { return this._categoryId; } set { this._categoryId = value; } } private DateTime _dateCreated = DateTime.MinValue; public DateTime dateCreated { get { return this._dateCreated; } set { this._dateCreated = value; } } private DateTime _dateUpdated = DateTime.MinValue; public DateTime dateUpdated { get { return this._dateUpdated; } set { this._dateUpdated = value; } } private bool _isActive = false; public bool isActive { get { return this._isActive; } set { this._isActive = value; } } private string _customerCode = String.Empty; public string customerCode { get { return this._customerCode; } set { this._customerCode = value; } } private string _projectCode = String.Empty; public string projectCode { get { return this._projectCode; } set { this._projectCode = value; } } private string _name = String.Empty; public string name { get { return this._name; } set { this._name = value; } } private string _description = String.Empty; public string description { get { return this._description; } set { this._description = value; } } }