CourseWorkElectronicsShop/ElectronicsShop/ElectronicsShopContracts/BusinessLogicContracts/IReportClientLogic.cs

30 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-07-23 20:29:10 +04:00
List<ReportPaymeantProductsViewModel>? GetPaymeantProducts(int _clientID);
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
byte[]? SavePaymeantToWordFile(int _clientID);
// Сохранение отчета оплат с товарами в .excel
byte[]? SavePaymeantToExcelFile(int _clientID);
// Отчет оплаченных товаров в .pdf
PdfDocument SaveProductToPdfFile(ReportBindingModel model);
2024-06-01 02:22:36 +04:00
}
}