CourseWorkElectronicsShop/ElectronicsShop/ElectronicsShopContracts/BusinessLogicContracts/IReportClientLogic.cs

29 lines
1.1 KiB
C#
Raw Normal View History

2024-07-23 20:29:10 +04:00
using ElectronicsShopContracts.BindingModels;
using ElectronicsShopContracts.ViewModels;
2024-07-23 20:29:10 +04:00
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
{
2024-07-02 17:28:23 +04:00
// получение списка товаров с указанием, в какие оплаты товар входит
2024-08-01 22:33:30 +04:00
List<ReportPaymeantProductsViewModel>? GetPaymeantProducts(ReportBindingModel model);
2024-07-02 17:28:23 +04:00
// получения списка оплат
2024-07-23 20:29:10 +04:00
List<ReportPaymeantsViewModel>? GetPaymeants(ReportBindingModel model);
2024-07-02 17:28:23 +04:00
2024-07-23 20:29:10 +04:00
// Сохранение отчета оплат в .word
2024-08-01 22:33:30 +04:00
byte[]? SavePaymeantToWordFile(ReportBindingModel model);
2024-07-23 20:29:10 +04:00
// Сохранение отчета оплат с товарами в .excel
2024-08-01 22:33:30 +04:00
byte[]? SavePaymeantToExcelFile(ReportBindingModel model);
2024-07-23 20:29:10 +04:00
// Отчет оплаченных товаров в .pdf
PdfDocument SaveProductToPdfFile(ReportBindingModel model);
2024-06-01 02:22:36 +04:00
}
2024-07-27 13:38:35 +04:00
}