using Payroll.BO; using System; using System.Collections.Generic; using System.Linq; using System.Web; using HRM.BO; namespace HRM.UI.MODELS { public class OTSubmitTModel { public OTSubmitTModel() { OTSubmitDate = DateTime.MinValue; FromTime = DateTime.MinValue; ToTime = DateTime.MinValue; SalaryMonth = DateTime.MinValue; EmployeeNo = string.Empty; EmployeeName = string.Empty; Remarks = string.Empty; LMApprovedDate = DateTime.MinValue; LMRemarks = string.Empty; DHApprovedDate = DateTime.MinValue; DHRemarks = string.Empty; } public int PKID { get; set; } public DateTime OTSubmitDate { get; set; } public DateTime FromTime { get; set; } public DateTime ToTime { get; set; } public DateTime SalaryMonth { get; set; } public int EmployeeID { get; set; } public string EmployeeNo { get; set; } public string EmployeeName { get; set; } public double OTHours { get; set; } public string Remarks { get; set; } public int OTPreApprovalID { get; set; } public int LMID { get; set; } public DateTime LMApprovedDate { get; set; } public double LMOTHour { get; set; } public string LMRemarks { get; set; } public int DHID { get; set; } public DateTime DHApprovedDate { get; set; } public double DHOTHour { get; set; } public string DHRemarks { get; set; } public EnumWFAttnStatus WFStatus { get; set; } } }