2024-05-31 19:49:56 +04:00
|
|
|
|
using ElectronicsShopContracts.BindingModels;
|
|
|
|
|
using ElectronicsShopContracts.ViewModels;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace ElectronicsShopContracts.BusinessLogicContracts
|
|
|
|
|
{
|
|
|
|
|
public interface IReportEmployeeLogic
|
|
|
|
|
{
|
2024-06-01 02:22:36 +04:00
|
|
|
|
List<ReportProductsViewModel> GetProduct(ReportProductBindingModel model);
|
|
|
|
|
void SaveProductsToWordFile(ReportProductBindingModel model);
|
|
|
|
|
void SaveProductsToExcelFile(ReportProductBindingModel model);
|
|
|
|
|
}
|
2024-05-31 19:49:56 +04:00
|
|
|
|
}
|