Files
BeWoPlaner/Data/Entities/ArbeitszeitEintrag.cs
2019-09-27 15:55:01 +02:00

118 lines
2.5 KiB
C#

using BS.Shared;
namespace BeWo.Data.Entities
{
public class ArbeitszeitEintrag : BeWoEntityBase
{
public static string PropertyName_UhrzeitVon = "UhrzeitVon";
public static string PropertyName_UhrzeitBis = "UhrzeitBis";
public static string PropertyName_Tag = "Tag";
public static string PropertyName_ArbeitszeitOid = "ArbeitszeitOid";
public static string PropertyName_Klient = "Klient";
public ArbeitszeitEintrag()
{
_Tid = TableID.ArbeitszeitEintrag;
}
private string _UhrzeitVon;
private string _UhrzeitBis;
private AppointmentDayOfWeek _Tag;
private long? _ArbeitszeitOid;
private long? _CustomerOid;
public virtual string UhrzeitVon
{
get
{
return this._UhrzeitVon;
}
set
{
if (this.AreDifferent(this._UhrzeitVon, value))
{
this._UhrzeitVon = value;
}
}
}
public virtual string UhrzeitBis
{
get
{
return this._UhrzeitBis;
}
set
{
if (this.AreDifferent(this._UhrzeitBis, value))
{
this._UhrzeitBis = value;
}
}
}
public virtual long? CustomerOid
{
get
{
return this._CustomerOid;
}
set
{
if (this.AreDifferent(this._CustomerOid, value))
{
this._CustomerOid = value;
}
}
}
public virtual AppointmentDayOfWeek Tag
{
get
{
return this._Tag;
}
set
{
if (this.AreDifferent(this._Tag, value))
{
this._Tag = value;
}
}
}
public virtual long? ArbeitszeitOid
{
get
{
return this._ArbeitszeitOid;
}
set
{
if (this.AreDifferent(this._ArbeitszeitOid, value))
{
this._ArbeitszeitOid = value;
}
}
}
public virtual Employee Employee { get; set; }
public virtual Customer Customer { get; set; }
}
}