main
Line | |
---|
1 | namespace 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.