source: WineTrackerFinal/WineTrackerWebApi/Models/Report/CustomerReport.cs

main
Last change on this file was 17d6948, checked in by Nikola Mishevski <Nikola.Mishevski@…>, 6 days ago

initial commit WineTracker Project

  • Property mode set to 100644
File size: 629 bytes
Line 
1namespace WineTrackerWebApi.Models.Report
2{
3 public class CustomerReport
4 {
5 private double _percentageDifference;
6
7 public string CustomerName { get; set; }
8 public string CustomerTypeName { get; set; }
9 public long TotalWineQuantity { get; set; }
10 public double TotalWineProfit { get; set; }
11 public double TotalWineBasePrice { get; set; }
12 public double TotalWineAgreedPrice { get; set; }
13 public double PercentageDifference
14 {
15 get => _percentageDifference;
16 set => _percentageDifference = Math.Round(value, 2);
17 }
18 }
19}
Note: See TracBrowser for help on using the repository browser.