40 lines
1.2 KiB
C#
40 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using HRM.BO;
|
|
|
|
namespace HRM.UI.MODELS
|
|
{
|
|
public class LeaveEntryTModel : AuditTrailBase
|
|
{
|
|
public LeaveEntryTModel()
|
|
{
|
|
FromDate = DateTime.MinValue;
|
|
ToDate = DateTime.MinValue;
|
|
TotalDays = 0;
|
|
Reason = string.Empty;
|
|
Address = string.Empty;
|
|
LeaveDayPeriod = string.Empty;
|
|
FileName = string.Empty;
|
|
}
|
|
|
|
public int EmployeeID { get; set; }
|
|
public int ResponsibleID { get; set; }
|
|
public int LeaveID { get; set; }
|
|
public DateTime FromDate { get; set; }
|
|
public DateTime ToDate { get; set; }
|
|
public double TotalDays { get; set; }
|
|
public string Reason { get; set; }
|
|
public string Address { get; set; }
|
|
public string LeaveDayPeriod { get; set; }
|
|
public string FileName { get; set; }
|
|
public byte[] FileInBytes { get; set; }
|
|
public int ObjectID { get; set; }
|
|
public int TranID { get; set; }
|
|
public bool IsLFA { get; set; }
|
|
public bool IsHalfDay { get; set; }
|
|
public EnumHalf SelectedHalf { get; set; }
|
|
public bool IsCompensatoryLeave { get; set; }
|
|
}
|
|
} |