29 lines
774 B
C#
29 lines
774 B
C#
using GiftShopContracts.BindingModels;
|
|
using GiftShopContracts.ViewModels;
|
|
|
|
namespace GiftShopContracts.BusinessLogicsContracts
|
|
{
|
|
public interface IReportLogic
|
|
{
|
|
List<ReportGiftComponentViewModel> GetGiftComponent();
|
|
|
|
List<ReportOrdersViewModel> GetOrders(ReportBindingModel model);
|
|
|
|
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);
|
|
}
|
|
}
|