From 864984784d0aba1994d47bb7bec6e76277614afa Mon Sep 17 00:00:00 2001 From: Frede Hundewadt <22748698+fhdk@users.noreply.github.com> Date: Sun, 29 May 2022 20:50:05 +0200 Subject: [PATCH] rename --- Wonky.Entity/DTO/SalesReportDto.cs | 31 ------------------------------ 1 file changed, 31 deletions(-) delete mode 100644 Wonky.Entity/DTO/SalesReportDto.cs diff --git a/Wonky.Entity/DTO/SalesReportDto.cs b/Wonky.Entity/DTO/SalesReportDto.cs deleted file mode 100644 index 237dc564..00000000 --- a/Wonky.Entity/DTO/SalesReportDto.cs +++ /dev/null @@ -1,31 +0,0 @@ -using System.ComponentModel.DataAnnotations; - -namespace Wonky.Entity.DTO; - -public class SalesReportDto -{ - [Required(ErrorMessage = "Dato skal angives")] public string ActivityDate { get; set; } = ""; - [Required(ErrorMessage = "Dagtype skal angives")]public string DayTypeEnum { get; set; } = ""; - [MaxLength(128, ErrorMessage = "Du kan højst bruge 128 tegn")]public string Comment { get; set; } = ""; - // - public long KmMorning { get; set; } - public long KmEvening { get; set; } - public int Distance { get; set; } - public int DistancePrivate { get; set; } - // - public int VisitNewCount { get; set; } - public int VisitRecallCount { get; set; } - public int DemoNewCount { get; set; } - public int DemoRecallCount { get; set; } - public int SalesNewCount { get; set; } - public int SalesRecallCount { get; set; } - public int SasCount { get; set; } - // - public decimal SumSalesDay { get; set; } - public decimal SumSasDay { get; set; } - public decimal SumTotalDay { get; set; } - - - - -}