Wonky.Client/Wonky.Entity/DTO/ReportFiguresDto.cs

38 lines
1.4 KiB
C#
Raw Normal View History

2022-06-10 18:11:38 +02:00
namespace Wonky.Entity.DTO;
public class ReportFiguresDto
{
public int SalesDayNumber { get; set; }
public long KmMorning { get; set; }
public long KmEvening { get; set; }
public int Distance { get; set; }
public int DistancePrivate { get; set; }
2022-06-10 18:11:38 +02:00
public int NewVisitCount { get; set; }
public int NewDemoCount { get; set; }
public int NewSaleCount { get; set; }
public int RecallVisitCount { get; set; }
public int RecallDemoCount { get; set; }
public int RecallSaleCount { get; set; }
public int SasCount { get; set; }
// turnover day
public decimal NewTurnover { get; set; }
public decimal RecallTurnover { get; set; }
public decimal SasTurnover { get; set; }
public decimal TotalTurnover { get; set; }
// month summaries
2022-06-10 18:11:38 +02:00
public int DistanceMonth { get; set; }
public int DistancePrivateMonth { get; set; }
2022-06-10 18:11:38 +02:00
public int NewVisitCountMonth { get; set; }
public int NewDemoCountMonth { get; set; }
public int NewSaleCountMonth { get; set; }
public int RecallVisitCountMonth { get; set; }
public int RecallDemoCountMonth { get; set; }
public int RecallSaleCountMonth { get; set; }
public int SasCountMonth { get; set; }
// month turnover
2022-06-10 18:11:38 +02:00
public decimal NewTurnoverMonth { get; set; }
public decimal RecallTurnoverMonth { get; set; }
public decimal SasTurnoverMonth { get; set; }
public decimal TotalTurnoverMonth { get; set; }
}