30 lines
807 B
C#
30 lines
807 B
C#
using System.Collections.Generic;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace BS.Shared.DataContracts
|
|
{
|
|
[DataContract]
|
|
public class SupportConceptFLSOverviewDC : IDataContract
|
|
{
|
|
private List<ServiceRecordFLSOverviewDC> _ServiceRecords;
|
|
|
|
[DataMember]
|
|
public List<ServiceRecordFLSOverviewDC> ServiceRecords
|
|
{
|
|
get
|
|
{
|
|
return this._ServiceRecords ?? (this._ServiceRecords = new List<ServiceRecordFLSOverviewDC>());
|
|
}
|
|
|
|
set
|
|
{
|
|
this._ServiceRecords = value;
|
|
}
|
|
}
|
|
|
|
[DataMember]
|
|
public SupportConceptCostBearerRelDC SupportConcept2CostBearer { get; set; }
|
|
|
|
public string CostbearerID { get; set; }
|
|
}
|
|
} |