diff --git a/Confectionery/ConfectioneryBusinessLogic/ExcelInfo.cs b/Confectionery/ConfectioneryBusinessLogic/ExcelInfo.cs new file mode 100644 index 0000000..a6e19c2 --- /dev/null +++ b/Confectionery/ConfectioneryBusinessLogic/ExcelInfo.cs @@ -0,0 +1,21 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using ConfectioneryContracts.ViewModels; + +namespace ConfectioneryBusinessLogic.OfficePackage.HelperModels +{ + public class ExcelInfo + { + public string FileName { get; set; } = string.Empty; + public string Title { get; set; } = string.Empty; + public List PastryComponents + { + get; + set; + } = new(); + + } +} diff --git a/Confectionery/ConfectioneryContracts/BindingModels/ReportOrdersViewModel.cs b/Confectionery/ConfectioneryContracts/ViewModels/ReportOrdersViewModel.cs similarity index 88% rename from Confectionery/ConfectioneryContracts/BindingModels/ReportOrdersViewModel.cs rename to Confectionery/ConfectioneryContracts/ViewModels/ReportOrdersViewModel.cs index bfb537c..88e4738 100644 --- a/Confectionery/ConfectioneryContracts/BindingModels/ReportOrdersViewModel.cs +++ b/Confectionery/ConfectioneryContracts/ViewModels/ReportOrdersViewModel.cs @@ -4,7 +4,7 @@ using System.Linq; using System.Text; using System.Threading.Tasks; -namespace ConfectioneryContracts.BindingModels +namespace ConfectioneryContracts.ViewModels { public class ReportOrdersViewModel { diff --git a/Confectionery/ConfectioneryContracts/BindingModels/ReportPastryComponentViewModel.cs b/Confectionery/ConfectioneryContracts/ViewModels/ReportPastryComponentViewModel.cs similarity index 88% rename from Confectionery/ConfectioneryContracts/BindingModels/ReportPastryComponentViewModel.cs rename to Confectionery/ConfectioneryContracts/ViewModels/ReportPastryComponentViewModel.cs index bc147f6..6813316 100644 --- a/Confectionery/ConfectioneryContracts/BindingModels/ReportPastryComponentViewModel.cs +++ b/Confectionery/ConfectioneryContracts/ViewModels/ReportPastryComponentViewModel.cs @@ -4,7 +4,7 @@ using System.Linq; using System.Text; using System.Threading.Tasks; -namespace ConfectioneryContracts.BindingModels +namespace ConfectioneryContracts.ViewModels { public class ReportPastryComponentViewModel {