Ressourcencheck ist jetzt korrekt Weiterentwicklung der Quittierungsbelege für die Mobilversion
60 lines
1.2 KiB
C#
60 lines
1.2 KiB
C#
using System.Collections.Generic;
|
|
using BS.Shared;
|
|
|
|
namespace BeWo.Data.Entities
|
|
{
|
|
public class ConfirmationReceiptSignature : BeWoEntityBase
|
|
{
|
|
private long? _EmployeeOid;
|
|
|
|
private IList<ServiceRecord> _ServiceRecords;
|
|
|
|
private string _SignatureImage;
|
|
|
|
public virtual long? EmployeeOid
|
|
{
|
|
get => _EmployeeOid;
|
|
|
|
set
|
|
{
|
|
if(AreDifferent(_EmployeeOid, value))
|
|
{
|
|
_EmployeeOid = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
public virtual IList<ServiceRecord> ServiceRecords
|
|
{
|
|
get => _ServiceRecords;
|
|
|
|
set
|
|
{
|
|
if(AreDifferent(_ServiceRecords, value))
|
|
{
|
|
_ServiceRecords = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
public virtual string SignatureImage
|
|
{
|
|
get => _SignatureImage;
|
|
|
|
set
|
|
{
|
|
if(AreDifferent(_SignatureImage, value))
|
|
{
|
|
_SignatureImage = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
public ConfirmationReceiptSignature()
|
|
{
|
|
_Tid = TableID.ConfirmationReceiptSignature;
|
|
}
|
|
|
|
}
|
|
}
|