45 lines
1.2 KiB
C#
45 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace BS.Shared.DataContracts.Reports
|
|
{
|
|
[DataContract]
|
|
public partial class AuslastungAnalysisEmployeeDC
|
|
{
|
|
|
|
private List<AuslastungAnalysisSupportConceptDC> _SupportConceptAnalysisList;
|
|
|
|
//[DataMember]
|
|
//public EmployeeDC Employee { get; set; }
|
|
|
|
[DataMember]
|
|
public long? EmployeeOid { get; set; }
|
|
|
|
[DataMember]
|
|
public String EmployeeFirstName { get; set; }
|
|
|
|
[DataMember]
|
|
public String EmployeeLastName { get; set; }
|
|
|
|
[DataMember]
|
|
public decimal? WeeklyTotalHours { get; set; }
|
|
|
|
[DataMember]
|
|
public decimal? MonthlyTotalHours { get; set; }
|
|
|
|
[DataMember]
|
|
public decimal TotalFLM { get; set; }
|
|
|
|
[DataMember]
|
|
public List<AuslastungAnalysisSupportConceptDC> SupportConceptAnalysisList
|
|
{
|
|
get { return _SupportConceptAnalysisList ?? (_SupportConceptAnalysisList = new List<AuslastungAnalysisSupportConceptDC>()); }
|
|
set { _SupportConceptAnalysisList = value; }
|
|
}
|
|
|
|
}
|
|
}
|