23 lines
903 B
C#
23 lines
903 B
C#
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<ReportPaymeantProductsViewModel> GetPaymeantProducts(int _clientID);
|
||
// получения списка оплат
|
||
List<ReportPaymeantsViewModel> GetPaymeants(ReportBindingModel model);
|
||
void SavePaymeantToWordFile(ReportBindingModel model);
|
||
|
||
// Сохранение компонент с указанием отчета в .excel
|
||
void SavePaymeantToExcelFile(ReportBindingModel model, int _clientID);
|
||
}
|
||
}
|