Files
BeWoPlaner/Data/Entities/Timesheet.cs
2016-06-27 01:45:38 +02:00

54 lines
1.1 KiB
C#

using System;
using BS.Shared;
namespace BeWo.Data.Entities
{
public class Timesheet : BeWoEntityBase
{
public static string PropertyName_CreationDate = "CreationDate";
public static string PropertyName_ShortName = "ShortName";
private DateTime? _CreationDate;
private DateTime? _SignDate;
public Timesheet()
{
this._Tid = TableID.Timesheet;
}
public virtual DateTime? CreationDate
{
get
{
return this._CreationDate;
}
set
{
if (this.AreDifferent(this._CreationDate, value))
{
this._CreationDate = value;
}
}
}
public virtual DateTime? SignDate
{
get
{
return this._SignDate;
}
set
{
if (this.AreDifferent(this._SignDate, value))
{
this._SignDate = value;
}
}
}
}
}