2024-04-08 21:48:15 +04:00
|
|
|
|
using ConfectioneryContracts.BindingModels;
|
|
|
|
|
using ConfectioneryContracts.ViewModels;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace ConfectioneryContracts.BusinessLogicsContracts
|
|
|
|
|
{
|
|
|
|
|
public interface IReportLogic
|
|
|
|
|
{
|
2024-04-09 15:45:07 +04:00
|
|
|
|
List<ReportPastryComponentViewModel> GetPastryComponent();
|
2024-04-08 21:48:15 +04:00
|
|
|
|
List<ReportOrdersViewModel> GetOrders(ReportBindingModel model);
|
2024-04-09 15:45:07 +04:00
|
|
|
|
void SavePastriesToWordFile(ReportBindingModel model);
|
|
|
|
|
void SavePastryComponentToExcelFile(ReportBindingModel model);
|
2024-04-08 21:48:15 +04:00
|
|
|
|
void SaveOrdersToPdfFile(ReportBindingModel model);
|
|
|
|
|
}
|
|
|
|
|
}
|