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

25 lines
940 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-06-22 02:38:03 +04:00
public List<ReportLunchesPCView> GetLunchesPCView(ReportBindingModel model);
public List<ReportCooksPCView> GetCooksPCView(ReportBindingModel model);
2023-05-20 12:11:48 +04:00
void saveLunchesToPdfFile(ReportBindingModel model);
2023-06-19 09:12:18 +04:00
void saveCooksToPdfFile(ReportBindingModel model);
2023-06-22 02:38:03 +04:00
byte[] saveCooksToWord(ReportBindingModel model);
byte[] saveCooksToExcel(ReportBindingModel model);
public byte[] saveOrdersToExcel(ReportBindingModel model);
public byte[] saveOrdersToWord(ReportBindingModel model);
2023-05-20 12:11:48 +04:00
}
}