Wonky.Client/Wonky.Entity/Views/ReportFiguresView.cs
2023-11-02 18:25:58 +01:00

52 lines
No EOL
2.1 KiB
C#

namespace Wonky.Entity.Views;
public class ReportFiguresView
{
public decimal NewTurnover { get; set; }
public decimal NewTurnoverMonth { get; set; }
public decimal NormalTurnover { get; set; }
public decimal NormalTurnoverMonth { get; set; }
public decimal PhoneTurnover { get; set; }
public decimal PhoneTurnoverMonth { get; set; }
public decimal RecallTurnover { get; set; }
public decimal RecallTurnoverMonth { get; set; }
public decimal SasTurnover { get; set; }
public decimal SasTurnoverMonth { get; set; }
public decimal TotalTurnover { get; set; }
public decimal TotalTurnoverMonth { get; set; }
public decimal WebTurnover { get; set; }
public decimal WebTurnoverMonth { get; set; }
public int Distance { get; set; }
public int DistanceMonth { get; set; }
public int DistancePrivate { get; set; }
public int DistancePrivateMonth { get; set; }
public int KmEvening { get; set; }
public int KmMorning { get; set; }
public int NewDemoCount { get; set; }
public int NewDemoCountMonth { get; set; }
public int NewSaleCount { get; set; }
public int NewSaleCountMonth { get; set; }
public int NewVisitCount { get; set; }
public int NewVisitCountMonth { get; set; }
public int PhoneCount { get; set; }
public int PhoneCountMonth { get; set; }
public int RecallDemoCount { get; set; }
public int RecallDemoCountMonth { get; set; }
public int RecallSaleCount { get; set; }
public int RecallSaleCountMonth { get; set; }
public int RecallVisitCount { get; set; }
public int RecallVisitCountMonth { get; set; }
public int SalesDayCount { get; set; }
public int SasCount { get; set; }
public int SasCountMonth { get; set; }
public int TotalDemoCount { get; set; }
public int TotalDemoCountMonth { get; set; }
public int TotalSaleCount { get; set; }
public int TotalSaleCountMonth { get; set; }
public int TotalVisitCount { get; set; }
public int TotalVisitCountMonth { get; set; }
public int WebCount { get; set; }
public int WebCountMonth { get; set; }
}