26 lines
570 B
C#
26 lines
570 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Runtime.Serialization;
|
|
|
|
|
|
namespace BS.Shared.DataContracts.Reports
|
|
{
|
|
[Serializable]
|
|
public class AuslastungAnalysisSupportConceptDC
|
|
{
|
|
public SupportConceptCostBearerRelDC CostBearer2SupportConcept;
|
|
|
|
public long? CustomerOid;
|
|
|
|
public String CustomerFirstName;
|
|
|
|
public String CustomerLastName;
|
|
|
|
public decimal TotalFLM;
|
|
|
|
public List<ServiceRecordFLSOverviewDC> ServiceRecords;
|
|
}
|
|
}
|