Files
BeWoPlaner/Data/Entities/Timesheet.cs

27 lines
818 B
C#
Raw Normal View History

2016-06-27 01:45:38 +02:00
using System;
using BS.Shared;
namespace BeWo.Data.Entities
{
public class Timesheet : BeWoEntityBase
{
public Timesheet()
{
this._Tid = TableID.Timesheet;
}
2019-07-12 17:36:37 +02:00
public virtual DateTime? StartDate { get; set; }
public virtual DateTime? EndDate { get; set; }
public virtual DateTime? CreationDate { get; set; }
public virtual DateTime? SignDate { get; set; }
public virtual DateTime? PrintedDate { get; set; }
public virtual long? SignedByEmployeeOid { get; set; }
public virtual long? PrintedByEmployeeOid { get; set; }
public virtual long? CustomerOid { get; set; }
public virtual long? EmployeeOid { get; set; }
public virtual String Status { get; set; }
2016-06-27 01:45:38 +02:00
}
2019-07-12 17:36:37 +02:00
}