Files
BeWoPlaner/BeWo/ViewModel/SupportConceptPeriodStatisticsVM.cs
2016-06-27 01:45:38 +02:00

44 lines
1.4 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using BeWo.Core;
using BeWo.Validation;
using BeWo.ViewModel.ListViewModel;
using BS.Shared;
using BS.Shared.Core;
using BS.Shared.DataContracts;
using BS.Shared.Extensions;
namespace BeWo.ViewModel
{
public class SupportConceptPeriodStatisticsVM
{
public String Header { get; set; }
public String StatisticInfo1Left { get; set; } //BEProvidedThisWeek , StringFormat=0.00
public String StatisticInfo1Right { get; set; } //BEProvidedTotalRounded , StringFormat=0.00
public String StatisticInfo1Error { get; set; } //BEOutOfApprovedPeriod , StringFormat=0.00
public String StatisticInfo2Left { get; set; } //BEApprovedPerWeek, StringFormat=0.00
public String StatisticInfo2Right { get; set; } //BEApprovedTotal, StringFormat=0.00
public String StatisticInfo3Left { get; set; } //BEFreePerWeek, StringFormat=0.00
public String StatisticInfo3Right { get; set; } //BEFreeTotal, StringFormat=0.00
public String StatisticInfo4Left { get; set; } //BEProvidedThisMonth, StringFormat=0.00
public String StatisticInfo4Right { get; set; } //BEApprovedPerMonth, StringFormat=0.00
public String StatisticInfo5Left { get; set; } //BEFreeTotal, StringFormat=0.00
public String StatisticInfo5Right { get; set; }
public decimal MinutesProvidedTotalRounded { get; set; }
}
}