24 lines
844 B
C#
24 lines
844 B
C#
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
|
|
{
|
|
public List<ReportCookView> GetCooksByLunches(ReportBindingModel model);
|
|
List<ReportLunchesPCView> GetLunchesPCView(ReportBindingModel model);
|
|
void saveLunchesToPdfFile(ReportBindingModel model);
|
|
void saveCooksToPdfFile(ReportBindingModel model);
|
|
void saveCooksToWord(ReportBindingModel model);
|
|
void saveCooksToExcel(ReportBindingModel model);
|
|
public void saveOrdersToExcel(ReportBindingModel model);
|
|
public void saveOrdersToWord(ReportBindingModel model);
|
|
}
|
|
}
|