using DocumentFormat.OpenXml.Packaging; using ElectronicsShopContracts.BindingModels; using ElectronicsShopContracts.ViewModels; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ElectronicsShopContracts.BusinessLogicContracts { public interface IReportClientLogic { // получение списка товаров с указанием, в какие оплаты товар входит List GetPaymeantProducts(int _clientID); // получения списка оплат List GetPaymeants(ReportBindingModel model); byte[] SavePaymeantToWordFile(int _clientID); // Сохранение компонент с указанием отчета в .excel byte[] SavePaymeantToExcelFile(int _clientID); } }