14 lines
510 B
C#
14 lines
510 B
C#
|
using PizzeriaContracts.BindingModels;
|
|||
|
using PizzeriaContracts.ViewModels;
|
|||
|
|
|||
|
namespace PizzeriaContracts.BusinessLogicsContracts
|
|||
|
{
|
|||
|
public interface IReportLogic
|
|||
|
{
|
|||
|
List<ReportPizzaComponentViewModel> GetPizzaComponents();
|
|||
|
List<ReportOrdersViewModel> GetOrders(ReportBindingModel model);
|
|||
|
void SavePizzasToWordFile(ReportBindingModel model);
|
|||
|
void SavePizzaComponentToExcelFile(ReportBindingModel model);
|
|||
|
void SaveOrdersToPdfFile(ReportBindingModel model);
|
|||
|
}
|
|||
|
}
|