Wonky.Client/Wonky.Entity/DTO/ReportFiguresDto.cs
Frede Hundewadt 5427c78dbe header check
2023-02-07 09:01:03 +01:00

195 lines
No EOL
5.3 KiB
C#

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