2023-05-20 12:11:48 +04:00
|
|
|
|
using CanteenContracts.BindingModels;
|
|
|
|
|
using CanteenContracts.View;
|
|
|
|
|
using CanteenContracts.ViewModels;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace CanteenContracts.BusinessLogicsContracts
|
|
|
|
|
{
|
|
|
|
|
public interface IReportLogic
|
|
|
|
|
{
|
2023-06-14 22:47:30 +04:00
|
|
|
|
public List<ReportCookView> GetCooksByLanches(ReportBindingModel model);
|
2023-05-20 12:11:48 +04:00
|
|
|
|
List<ReportLunchesPCView> GetLunchesPCView(ReportBindingModel model);
|
|
|
|
|
void saveLunchesToPdfFile(ReportBindingModel model);
|
|
|
|
|
void saveCooksToWord(ReportBindingModel model);
|
|
|
|
|
void saveCooksToExcel(ReportBindingModel model);
|
2023-06-14 22:47:30 +04:00
|
|
|
|
public void saveOrdersToExcel(ReportBindingModel model);
|
|
|
|
|
public void saveOrdersToWord(ReportBindingModel model);
|
2023-05-20 12:11:48 +04:00
|
|
|
|
}
|
|
|
|
|
}
|