2023-03-13 16:55:10 +04:00
|
|
|
|
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
|
|
|
|
|
{
|
2023-03-14 00:13:38 +04:00
|
|
|
|
List<ReportReinforcedComponentViewModel> GetReinforcedComponents();
|
2023-03-13 16:55:10 +04:00
|
|
|
|
List<ReportOrdersViewModel> GetOrders(ReportBindingModel model);
|
2023-03-14 00:13:38 +04:00
|
|
|
|
void SaveReinforcediesToWordFile(ReportBindingModel model);
|
|
|
|
|
void SaveReinforcedComponentToExcelFile(ReportBindingModel model);
|
2023-03-13 16:55:10 +04:00
|
|
|
|
void SaveOrdersToPdfFile(ReportBindingModel model);
|
|
|
|
|
}
|
|
|
|
|
}
|