2024-05-31 19:49:56 +04:00
|
|
|
|
using ElectronicsShopContracts.BindingModels;
|
|
|
|
|
using ElectronicsShopContracts.ViewModels;
|
2024-08-03 22:10:14 +04:00
|
|
|
|
using PdfSharp.Pdf;
|
2024-05-31 19:49:56 +04:00
|
|
|
|
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);
|
|
|
|
|
byte[]? SaveProductsToWordFile(ReportProductBindingModel model);
|
2024-07-30 15:36:42 +04:00
|
|
|
|
byte[]? SaveProductsToExcelFile(ReportProductBindingModel model);
|
2024-08-03 22:10:14 +04:00
|
|
|
|
PdfDocument SaveProductsToPdfFile(ReportProductBindingModel model);
|
2024-06-01 02:22:36 +04:00
|
|
|
|
}
|
2024-05-31 19:49:56 +04:00
|
|
|
|
}
|