diff --git a/Confectionery/ConfectioneryContracts/BindingModels/ReportBindingModel.cs b/Confectionery/ConfectioneryContracts/BindingModels/ReportBindingModel.cs new file mode 100644 index 0000000..a2f79c8 --- /dev/null +++ b/Confectionery/ConfectioneryContracts/BindingModels/ReportBindingModel.cs @@ -0,0 +1,16 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ConfectioneryContracts.BindingModels +{ + public class ReportBindingModel + { + public string FileName { get; set; } = string.Empty; + public DateTime? DateFrom { get; set; } + public DateTime? DateTo { get; set; } + + } +} diff --git a/Confectionery/ConfectioneryContracts/BindingModels/ReportOrdersViewModel.cs b/Confectionery/ConfectioneryContracts/BindingModels/ReportOrdersViewModel.cs new file mode 100644 index 0000000..bfb537c --- /dev/null +++ b/Confectionery/ConfectioneryContracts/BindingModels/ReportOrdersViewModel.cs @@ -0,0 +1,16 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ConfectioneryContracts.BindingModels +{ + public class ReportOrdersViewModel + { + public int Id { get; set; } + public DateTime DateCreate { get; set; } + public string PastryName { get; set; } = string.Empty; + public double Sum { get; set; } + } +} diff --git a/Confectionery/ConfectioneryContracts/BindingModels/ReportPastryComponentViewModel.cs b/Confectionery/ConfectioneryContracts/BindingModels/ReportPastryComponentViewModel.cs new file mode 100644 index 0000000..bc147f6 --- /dev/null +++ b/Confectionery/ConfectioneryContracts/BindingModels/ReportPastryComponentViewModel.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ConfectioneryContracts.BindingModels +{ + public class ReportPastryComponentViewModel + { + public string ComponentName { get; set; } = string.Empty; + public int TotalCount { get; set; } + public List> Pastrys { get; set; } = new(); + } +}