2016-06-27 01:45:38 +02:00
|
|
|
|
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; }
|
2025-12-01 18:23:48 +01:00
|
|
|
|
|
|
|
|
|
|
public string CostbearerID { get; set; }
|
2016-06-27 01:45:38 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|