Files
BeWoPlaner/Shared/DataContracts/FLSAnalysisRootDC.cs
2016-06-27 01:45:38 +02:00

42 lines
1020 B
C#

using System.Collections.Generic;
using System.Runtime.Serialization;
using BS.Shared.DataContracts.Compact;
namespace BS.Shared.DataContracts
{
[DataContract]
public partial class FLSAnalysisRootDC : IDataContract
{
private List<FLSAnalysisGroupDC> _Groups;
[DataMember]
public CompactCustomerDC Customer { get; set; }
[DataMember]
public CompactEmployeeDC Employee { get; set; }
[DataMember]
public List<FLSAnalysisGroupDC> Groups
{
get
{
return this._Groups ?? (this._Groups = new List<FLSAnalysisGroupDC>());
}
set
{
this._Groups = value;
}
}
[DataMember]
public CompactOrganisationDC Organisation { get; set; }
[DataMember]
public decimal SollFLSPerWeek { get; set; }
[DataMember]
public decimal TotalFLM { get; set; }
}
}