23 lines
755 B
C#
23 lines
755 B
C#
using ElectronicsShopContracts.BindingModels;
|
|
using ElectronicsShopContracts.ViewModels;
|
|
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
|
|
{
|
|
List<ReportProductInPaymeantsViewModel> GetProducts(ReportProductBindingModel model);
|
|
|
|
List<ReportProductInPaymeantsViewModel> GetProductsFix(List<ProductViewModel> products);
|
|
|
|
byte[]? SaveProductsToWordFile(List<ProductViewModel> products);
|
|
byte[]? SaveProductsToExcelFile(List<ProductViewModel> products);
|
|
PdfDocument SaveProductsToPdfFile(ReportProductBindingModel model);
|
|
}
|
|
}
|