PIbd-21_BatylkinaAO_MusoevD.../Canteen/CanteenContracts/BusinessLogicsContracts/IReportLogic.cs

24 lines
844 B
C#
Raw Normal View History

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-19 09:12:18 +04:00
public List<ReportCookView> GetCooksByLunches(ReportBindingModel model);
2023-05-20 12:11:48 +04:00
List<ReportLunchesPCView> GetLunchesPCView(ReportBindingModel model);
void saveLunchesToPdfFile(ReportBindingModel model);
2023-06-19 09:12:18 +04:00
void saveCooksToPdfFile(ReportBindingModel model);
2023-05-20 12:11:48 +04:00
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
}
}