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

19 lines
565 B
C#

using BS.Shared;
namespace BeWo.Data.Entities
{
public class ServiceAccounting : BeWoEntityBase
{
public ServiceAccounting()
{
this._Tid = TableID.ServiceAccounting;
}
public virtual decimal? BillableAmount { get; set; }
public virtual bool IsDefault { get; set; }
public virtual AccountingIntervalType AccountingInterval { get; set; }
public virtual ServiceDescription ServiceDescription { get; set; }
public virtual long? SupportConceptOid { get; set; }
}
}