CourseWork_CompShop/ComputerShopProvider/ComputerShopBusinessLogic/BusinessLogics/ReportLogic.cs

46 lines
1.4 KiB
C#
Raw Normal View History

2023-05-17 14:20:02 +04:00
using ComputerShopContracts.BindingModels;
using ComputerShopContracts.BusinessLogicContracts;
using ComputerShopContracts.ViewModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ComputerShopBusinessLogic.BusinessLogics
{
2023-05-17 17:28:31 +04:00
//public class ReportLogic : IReportLogic
//{
// private readonly IBlankStorage _blankStorage;
// private readonly IDocumentStorage _documentStorage;
// private readonly IOrderStorage _orderStorage;
// private readonly AbstractSaveToExcel _saveToExcel;
// private readonly AbstractSaveToWord _saveToWord;
// private readonly AbstractSaveToPdf _saveToPdf;
// public List<ReportPurchaseReceivingViewModel> GetPurchaseReceiving()
// {
// throw new NotImplementedException();
// }
2023-05-17 14:20:02 +04:00
2023-05-17 17:28:31 +04:00
// public List<ReportPurchaseSupplyViewModel> GetPurchaseSupply()
// {
// throw new NotImplementedException();
// }
2023-05-17 14:20:02 +04:00
2023-05-17 17:28:31 +04:00
// public void SaveOrdersToPdfFile(ReportBindingModel model)
// {
// throw new NotImplementedException();
// }
2023-05-17 14:20:02 +04:00
2023-05-17 17:28:31 +04:00
// public void SavePackagesToWordFile(ReportBindingModel model)
// {
// throw new NotImplementedException();
// }
2023-05-17 14:20:02 +04:00
2023-05-17 17:28:31 +04:00
// public void SaveProductComponentToExcelFile(ReportBindingModel model)
// {
// throw new NotImplementedException();
// }
//}
2023-05-17 14:20:02 +04:00
}