37 lines
787 B
C#
37 lines
787 B
C#
using System;
|
|
using HRM.BO;
|
|
|
|
namespace HRM.UI.MODELS
|
|
{
|
|
public class EmpFieldTrackTModel : AuditTrailBase
|
|
{
|
|
public EmpFieldTrackTModel()
|
|
{
|
|
TranDateTime = DateTime.MinValue;
|
|
NearestAddress = string.Empty;
|
|
ZipCode = string.Empty;
|
|
Client = string.Empty;
|
|
Remarks = string.Empty;
|
|
}
|
|
|
|
public int EmployeeID { get; set; }
|
|
|
|
public DateTime TranDateTime { get; set; }
|
|
|
|
public string NearestAddress { get; set; }
|
|
|
|
public decimal Latitude { get; set; }
|
|
|
|
public decimal Longitude { get; set; }
|
|
|
|
public string ZipCode { get; set; }
|
|
|
|
public string Client { get; set; }
|
|
|
|
public int? LocationID { get; set; }
|
|
|
|
public EnumTrackType TrackType { get; set; }
|
|
|
|
public string Remarks { get; set; }
|
|
}
|
|
} |