PIbd-22_Kashin_M.I_PrecastC.../PrecastConcretePlant/PrecastConcretePlantContracts/BusinessLogicsContracts/IReportLogic.cs

20 lines
667 B
C#

using PrecastConcretePlantContracts.BindingModels;
using PrecastConcretePlantContracts.ViewModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PrecastConcretePlantContracts.BusinessLogicsContracts
{
public interface IReportLogic
{
List<ReportComponentBlankViewModel> GetDocumentBlanks();
List<ReportOrdersViewModel> GetOrders(ReportBindingModel model);
void SaveDocumentsToWordFile(ReportBindingModel model);
void SaveProductComponentToExcelFile(ReportBindingModel model);
void SaveOrdersToPdfFile(ReportBindingModel model);
}
}