using System; using System.Collections.Generic; using System.Linq; using System.Web; //========================================================================================= // CTSInvoiceBO.cs // // This file is the code for Business Objects of CTS invoice. //----------------------------------------------------------------------------------------- // // Modification Control Log // // Date By Version Description // 01/16/2012 PA 1.0 Business Objects of CTS invoice // // //========================================================================================== namespace SCPApp.BusinessObjects { public class CTSInvoiceBO { public CTSInvoiceBO() { // Initialize Properties InvoiceNo = string.Empty; EmployeeId = string.Empty; CreatedDate = null; CreatedBy = string.Empty; ModifiedDate = null; ModifiedBy = string.Empty; } #region properties public string InvoiceNo { get; set; } public string EmployeeId { get; set; } public DateTime? CreatedDate { get; set; } public string CreatedBy { get; set; } public DateTime? ModifiedDate { get; set; } public string ModifiedBy { get; set; } #endregion } }