// Copyright (C) 2022 FCS Frede's Computer Services. // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as // published by the Free Software Foundation, either version 3 of the // License, or (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU Affero General Public License for more details. // // You should have received a copy of the GNU Affero General Public License // along with this program. If not, see [https://www.gnu.org/licenses/agpl-3.0.en.html] // namespace Wonky.Entity.DTO; public class ReportFiguresModel { /// /// Sales day number /// public int SalesDayCount { 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; } }