namespace Wonky.Entity.DTO; public class ReportFiguresDto { /// /// Sales day number /// public int SalesDayNumber { get; set; } /// /// Distance today /// public int Distance { get; set; } /// /// Distance private (for company cars) /// public int DistancePrivate { get; set; } /// /// Odometer value evening /// public int KmEvening { get; set; } /// /// Odometer value morning /// public int KmMorning { get; set; } /// /// Counter for new visits /// public int NewVisitCount { get; set; } /// /// Counter for product demonstration at new visit /// public int NewDemoCount { get; set; } /// /// Counter for product sale at new visit /// public int NewSaleCount { get; set; } /// /// Counter for recall visits /// public int RecallVisitCount { get; set; } /// /// Counter for product demonstration at recall visit /// public int RecallDemoCount { get; set; } /// /// Counter for product sale at recall visit /// public int RecallSaleCount { get; set; } /// /// Counter for total number of visits for workday /// public int TotalVisitCount { get; set; } /// /// Counter for total number of product demonstration /// public int TotalDemoCount { get; set; } /// /// Count for total number of product sale /// public int TotalSaleCount { get; set; } /// /// Counter for the number of safe seal sale /// public int SasCount { get; set; } /// /// Turnover for new sale /// public decimal NewTurnover { get; set; } /// /// Turnover for recall sale /// public decimal RecallTurnover { get; set; } /// /// Turnover for safe seal sale /// public decimal SasTurnover { get; set; } /// /// Total turnover for work day /// public decimal TotalTurnover { get; set; } /// /// Total distance for month /// public int DistanceMonth { get; set; } /// /// Total private distance for month (company cars) /// public int DistancePrivateMonth { get; set; } /// /// Counter for new visits month /// public int NewVisitCountMonth { get; set; } /// /// Counter for product demonstration at new visit month /// public int NewDemoCountMonth { get; set; } /// /// Counter for product sale at new visit month /// public int NewSaleCountMonth { get; set; } /// /// Counter for recall visit month /// public int RecallVisitCountMonth { get; set; } /// /// Counter for product demonstration at recall visit month /// public int RecallDemoCountMonth { get; set; } /// /// Counter for product sale at recall visit month /// public int RecallSaleCountMonth { get; set; } /// /// Counter for total number of visit month /// public int TotalVisitCountMonth { get; set; } /// /// Counter for total number of product demo month /// public int TotalDemoCountMonth { get; set; } /// /// Counter for total number of product sale month /// public int TotalSaleCountMonth { get; set; } /// /// Counter for total number safe seal sale month /// public int SasCountMonth { get; set; } /// /// Turnover total for new sale month /// public decimal NewTurnoverMonth { get; set; } /// /// Turnover total for recall sale month /// public decimal RecallTurnoverMonth { get; set; } /// /// Turnover total for safe seal sale month /// public decimal SasTurnoverMonth { get; set; } /// /// Turnover total for all sale month /// public decimal TotalTurnoverMonth { get; set; } }