CourseWorkElectronicsShop/ElectronicsShop/ElectronicsShopContracts/BusinessLogicContracts/IReportEmployeeLogic.cs

23 lines
755 B
C#
Raw Normal View History

using ElectronicsShopContracts.BindingModels;
using ElectronicsShopContracts.ViewModels;
2024-08-03 22:10:14 +04:00
using PdfSharp.Pdf;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ElectronicsShopContracts.BusinessLogicContracts
{
public interface IReportEmployeeLogic
{
2024-07-29 21:12:31 +04:00
List<ReportProductInPaymeantsViewModel> GetProducts(ReportProductBindingModel model);
2024-08-09 15:14:33 +04:00
List<ReportProductInPaymeantsViewModel> GetProductsFix(List<ProductViewModel> products);
byte[]? SaveProductsToWordFile(List<ProductViewModel> products);
byte[]? SaveProductsToExcelFile(List<ProductViewModel> products);
2024-08-03 22:10:14 +04:00
PdfDocument SaveProductsToPdfFile(ReportProductBindingModel model);
2024-06-01 02:22:36 +04:00
}
}