29 lines
1.1 KiB
C#
29 lines
1.1 KiB
C#
using ElectronicsShopContracts.BindingModels;
|
||
using ElectronicsShopContracts.ViewModels;
|
||
using MigraDoc.DocumentObjectModel;
|
||
using PdfSharp.Pdf;
|
||
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(ReportBindingModel model);
|
||
// получения списка оплат
|
||
List<ReportPaymeantsViewModel>? GetPaymeants(ReportBindingModel model);
|
||
|
||
// Сохранение отчета оплат в .word
|
||
byte[]? SavePaymeantToWordFile(List<PaymeantViewModel> paymeants);
|
||
|
||
// Сохранение отчета оплат с товарами в .excel
|
||
byte[]? SavePaymeantToExcelFile(ReportBindingModel model);
|
||
|
||
// Отчет оплаченных товаров в .pdf
|
||
PdfDocument SaveProductToPdfFile(ReportBindingModel model);
|
||
}
|
||
} |