19 lines
565 B
C#
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; }
|
|
}
|
|
} |