using System; using System.Collections.Generic; using System.Data; using Ease.Core.Utility; namespace HRM.BO { #region SystemInformation //public class SystemInformation : AuditTrailBase //{ // #region Constructor // private ISystemInformationService systemInformationService; // public SystemInformation() // { // Code = string.Empty; // name = string.Empty; // corporateAddress = string.Empty; // factoryAddress = string.Empty; // TelephoneNo = string.Empty; // email = string.Empty; // webAddress = string.Empty; // systemStartDate = DateTime.MinValue; // TaxYearEndDate = DateTime.MinValue; // NextPayProcessDate = DateTime.MinValue; // maxYearOfService = 0; // pFContriStaff = 0; // pFContriCompany = 0; // pFInterest = 0; // TaxParamID = 0; // oTFilePath = string.Empty; // PFYearEndDate = DateTime.MinValue; // PayrollTypeID = 0; // } // #endregion // #region Properties // public static SystemInformation CurrentSysInfo; // public string Code { get; set; } // public string name { get; set; } // public string corporateAddress { get; set; } // public string factoryAddress { get; set; } // public string TelephoneNo { get; set; } // public string email { get; set; } // public string webAddress { get; set; } // public DateTime systemStartDate { get; set; } // public DateTime TaxYearEndDate { get; set; } // public DateTime NextPayProcessDate { get; set; } // public DateTime LastPayProcessDate // { // get { return Global.DateFunctions.LastDateOfMonth(NextPayProcessDate.AddMonths(-1)); } // } // public int maxYearOfService { get; set; } // public double pFContriStaff { get; set; } // public double pFContriCompany { get; set; } // public double pFInterest { get; set; } // public int TaxParamID { get; set; } // public string oTFilePath { get; set; } // public DateTime PFYearEndDate { get; set; } // public int PayrollTypeID { get; set; } // #endregion //} #endregion }