16 lines
519 B
C#
16 lines
519 B
C#
using SushiBarContracts.BindingModels;
|
|
using SushiBarContracts.ViewModels;
|
|
|
|
namespace SushiBarContracts.BusinessLogicsContracts
|
|
{
|
|
public interface IReportLogic
|
|
{
|
|
List<ReportSushiComponentViewModel> GetProductComponent();
|
|
List<ReportOrdersViewModel> GetOrders(ReportBindingModel model);
|
|
void SaveComponentsToWordFile(ReportBindingModel model);
|
|
void SaveProductComponentToExcelFile(ReportBindingModel model);
|
|
void SaveOrdersToPdfFile(ReportBindingModel model);
|
|
|
|
}
|
|
}
|