namespace WineTrackerWebApi.Models.Report { public class CustomerReport { private double _percentageDifference; public string CustomerName { get; set; } public string CustomerTypeName { get; set; } public long TotalWineQuantity { get; set; } public double TotalWineProfit { get; set; } public double TotalWineBasePrice { get; set; } public double TotalWineAgreedPrice { get; set; } public double PercentageDifference { get => _percentageDifference; set => _percentageDifference = Math.Round(value, 2); } } }