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;
|
|
|
|
|
|
|
2024-02-20 14:42:04 +01:00
|
|
|
|
private long? _BargeldtransaktionsOid;
|
|
|
|
|
|
|
2024-11-12 18:37:23 +01:00
|
|
|
|
public Signature()
|
|
|
|
|
|
{
|
|
|
|
|
|
_Tid = TableID.SignatureTable;
|
|
|
|
|
|
}
|
2016-06-27 01:45:38 +02:00
|
|
|
|
|
|
|
|
|
|
public virtual string DataBild
|
|
|
|
|
|
{
|
2024-11-12 18:37:23 +01:00
|
|
|
|
get => _DataBild;
|
2016-06-27 01:45:38 +02:00
|
|
|
|
|
|
|
|
|
|
set
|
|
|
|
|
|
{
|
2024-11-12 18:37:23 +01:00
|
|
|
|
if(AreDifferent(_DataBild, value))
|
2016-06-27 01:45:38 +02:00
|
|
|
|
{
|
2024-11-12 18:37:23 +01:00
|
|
|
|
_DataBild = value;
|
2016-06-27 01:45:38 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public virtual DateTime Zeitstempel
|
|
|
|
|
|
{
|
2024-11-12 18:37:23 +01:00
|
|
|
|
get => _Zeitstempel;
|
2016-06-27 01:45:38 +02:00
|
|
|
|
|
|
|
|
|
|
set
|
|
|
|
|
|
{
|
2024-11-12 18:37:23 +01:00
|
|
|
|
if(AreDifferent(_Zeitstempel, value))
|
2016-06-27 01:45:38 +02:00
|
|
|
|
{
|
2024-11-12 18:37:23 +01:00
|
|
|
|
_Zeitstempel = value;
|
2016-06-27 01:45:38 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public virtual string Latitute
|
|
|
|
|
|
{
|
2024-11-12 18:37:23 +01:00
|
|
|
|
get => _Latitute;
|
2016-06-27 01:45:38 +02:00
|
|
|
|
|
|
|
|
|
|
set
|
|
|
|
|
|
{
|
2024-11-12 18:37:23 +01:00
|
|
|
|
if(AreDifferent(_Latitute, value))
|
2016-06-27 01:45:38 +02:00
|
|
|
|
{
|
2024-11-12 18:37:23 +01:00
|
|
|
|
_Latitute = value;
|
2016-06-27 01:45:38 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public virtual string Longitute
|
|
|
|
|
|
{
|
2024-11-12 18:37:23 +01:00
|
|
|
|
get => _Longitute;
|
2016-06-27 01:45:38 +02:00
|
|
|
|
|
|
|
|
|
|
set
|
|
|
|
|
|
{
|
2024-11-12 18:37:23 +01:00
|
|
|
|
if(AreDifferent(_Longitute, value))
|
2016-06-27 01:45:38 +02:00
|
|
|
|
{
|
2024-11-12 18:37:23 +01:00
|
|
|
|
_Longitute = value;
|
2016-06-27 01:45:38 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public virtual long? ServiceRecordOid
|
|
|
|
|
|
{
|
2024-11-12 18:37:23 +01:00
|
|
|
|
get => _ServiceRecordOid;
|
2016-06-27 01:45:38 +02:00
|
|
|
|
|
|
|
|
|
|
set
|
|
|
|
|
|
{
|
2024-11-12 18:37:23 +01:00
|
|
|
|
if(AreDifferent(_ServiceRecordOid, value))
|
2016-06-27 01:45:38 +02:00
|
|
|
|
{
|
2024-11-12 18:37:23 +01:00
|
|
|
|
_ServiceRecordOid = value;
|
2016-06-27 01:45:38 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2024-02-20 14:42:04 +01:00
|
|
|
|
public virtual long? BargeldtransaktionsOid
|
|
|
|
|
|
{
|
|
|
|
|
|
get => _BargeldtransaktionsOid;
|
|
|
|
|
|
|
|
|
|
|
|
set
|
|
|
|
|
|
{
|
|
|
|
|
|
if(AreDifferent(_BargeldtransaktionsOid, value))
|
|
|
|
|
|
{
|
|
|
|
|
|
_BargeldtransaktionsOid = value;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2016-06-27 01:45:38 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|