2024-04-07 10:17:23 +04:00
|
|
|
|
using GiftShopContracts.BindingModels;
|
|
|
|
|
using GiftShopContracts.ViewModels;
|
|
|
|
|
|
|
|
|
|
namespace GiftShopContracts.BusinessLogicsContracts
|
|
|
|
|
{
|
|
|
|
|
public interface IReportLogic
|
|
|
|
|
{
|
|
|
|
|
List<ReportGiftComponentViewModel> GetGiftComponent();
|
2024-05-18 18:05:46 +04:00
|
|
|
|
|
2024-04-07 10:17:23 +04:00
|
|
|
|
List<ReportOrdersViewModel> GetOrders(ReportBindingModel model);
|
2024-05-18 18:05:46 +04:00
|
|
|
|
|
|
|
|
|
List<ReportDateOrdersViewModel> GetDatesOrders();
|
|
|
|
|
|
|
|
|
|
List<ReportShopGiftViewModel> GetShopsGifts();
|
|
|
|
|
|
|
|
|
|
void SaveGiftsToWordFile(ReportBindingModel model);
|
|
|
|
|
|
|
|
|
|
void SaveShopsToWordFile(ReportBindingModel model);
|
|
|
|
|
|
|
|
|
|
void SaveGiftComponentToExcelFile(ReportBindingModel model);
|
|
|
|
|
|
|
|
|
|
void SaveShopsGiftsToExcelFile(ReportBindingModel model);
|
|
|
|
|
|
|
|
|
|
void SaveOrdersToPdfFile(ReportBindingModel model);
|
|
|
|
|
|
|
|
|
|
void SaveDatesOrdersToPdfFile(ReportBindingModel model);
|
|
|
|
|
}
|
2024-04-07 10:17:23 +04:00
|
|
|
|
}
|