Files
BeWoPlaner/Data/Entities/Signature.cs

103 lines
2.2 KiB
C#
Raw Normal View History

2016-06-27 01:45:38 +02:00
using BS.Shared;
using System;
namespace BeWo.Data.Entities
{
public class Signature : BeWoEntityBase
{
private string _DataBild;
private DateTime _Zeitstempel;
private string _Latitute;
private string _Longitute;
private long? _ServiceRecordOid;
private long? _BargeldtransaktionsOid;
public Signature()
{
_Tid = TableID.SignatureTable;
}
2016-06-27 01:45:38 +02:00
public virtual string DataBild
{
get => _DataBild;
2016-06-27 01:45:38 +02:00
set
{
if(AreDifferent(_DataBild, value))
2016-06-27 01:45:38 +02:00
{
_DataBild = value;
2016-06-27 01:45:38 +02:00
}
}
}
public virtual DateTime Zeitstempel
{
get => _Zeitstempel;
2016-06-27 01:45:38 +02:00
set
{
if(AreDifferent(_Zeitstempel, value))
2016-06-27 01:45:38 +02:00
{
_Zeitstempel = value;
2016-06-27 01:45:38 +02:00
}
}
}
public virtual string Latitute
{
get => _Latitute;
2016-06-27 01:45:38 +02:00
set
{
if(AreDifferent(_Latitute, value))
2016-06-27 01:45:38 +02:00
{
_Latitute = value;
2016-06-27 01:45:38 +02:00
}
}
}
public virtual string Longitute
{
get => _Longitute;
2016-06-27 01:45:38 +02:00
set
{
if(AreDifferent(_Longitute, value))
2016-06-27 01:45:38 +02:00
{
_Longitute = value;
2016-06-27 01:45:38 +02:00
}
}
}
public virtual long? ServiceRecordOid
{
get => _ServiceRecordOid;
2016-06-27 01:45:38 +02:00
set
{
if(AreDifferent(_ServiceRecordOid, value))
2016-06-27 01:45:38 +02:00
{
_ServiceRecordOid = value;
2016-06-27 01:45:38 +02:00
}
}
}
public virtual long? BargeldtransaktionsOid
{
get => _BargeldtransaktionsOid;
set
{
if(AreDifferent(_BargeldtransaktionsOid, value))
{
_BargeldtransaktionsOid = value;
}
}
}
2016-06-27 01:45:38 +02:00
}
}