2023-03-12 20:49:40 +04:00
|
|
|
|
using SushiBarContracts.BindingModels;
|
|
|
|
|
using SushiBarContracts.ViewModels;
|
|
|
|
|
|
|
|
|
|
namespace SushiBarContracts.BusinessLogicsContracts
|
|
|
|
|
{
|
|
|
|
|
public interface IReportLogic
|
|
|
|
|
{
|
2023-03-14 10:12:32 +04:00
|
|
|
|
List<ReportSushiComponentViewModel> GetSushi();
|
2023-03-12 20:49:40 +04:00
|
|
|
|
List<ReportOrdersViewModel> GetOrders(ReportBindingModel model);
|
2023-03-14 10:12:32 +04:00
|
|
|
|
void SaveSushiToWordFile(ReportBindingModel model);
|
2023-03-12 20:49:40 +04:00
|
|
|
|
void SaveProductComponentToExcelFile(ReportBindingModel model);
|
|
|
|
|
void SaveOrdersToPdfFile(ReportBindingModel model);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|