2024-03-24 13:36:55 +04:00
|
|
|
|
using IceCreamShopContracts.BindingModels;
|
|
|
|
|
using IceCreamShopContracts.ViewModels;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace IceCreamShopContracts.BusinessLogicsContracts
|
|
|
|
|
{
|
|
|
|
|
public interface IReportLogic
|
|
|
|
|
{
|
|
|
|
|
List<ReportIceCreamComponentViewModel> GetIceCreamComponent();
|
|
|
|
|
List<ReportOrdersViewModel> GetOrders(ReportBindingModel model);
|
2024-03-24 18:46:06 +04:00
|
|
|
|
List<ReportDateOrdersViewModel> GetDatesOrders();
|
|
|
|
|
List<ReportShopIceCreamViewModel> GetShopsIceCreams();
|
2024-03-24 15:10:16 +04:00
|
|
|
|
void SaveIceCreamToWordFile(ReportBindingModel model);
|
2024-03-24 13:36:55 +04:00
|
|
|
|
void SaveIceCreamComponentToExcelFile(ReportBindingModel model);
|
|
|
|
|
void SaveOrdersToPdfFile(ReportBindingModel model);
|
2024-03-24 18:46:06 +04:00
|
|
|
|
void SaveShopsToWordFile(ReportBindingModel model);
|
|
|
|
|
void SaveShopsIceCreamsToExcelFile(ReportBindingModel model);
|
|
|
|
|
void SaveDatesOrdersToPdfFile(ReportBindingModel model);
|
2024-03-24 13:36:55 +04:00
|
|
|
|
}
|
|
|
|
|
}
|