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 GetProducts(ReportProductBindingModel model); byte[]? SaveProductsToWordFile(ReportProductBindingModel model); byte[]? SaveProductsToExcelFile(ReportProductBindingModel model); PdfDocument SaveProductsToPdfFile(ReportProductBindingModel model); } }