2024-04-25 12:52:10 +04:00
|
|
|
|
using PrecastConcretePlantContracts.BindingModels;
|
|
|
|
|
using PrecastConcretePlantContracts.ViewModels;
|
|
|
|
|
using System;
|
2024-04-23 13:22:37 +04:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace PrecastConcretePlantContracts.BusinessLogicsContracts
|
|
|
|
|
{
|
2024-04-25 12:52:10 +04:00
|
|
|
|
public interface IReportLogic
|
2024-04-23 13:22:37 +04:00
|
|
|
|
{
|
2024-04-25 12:52:10 +04:00
|
|
|
|
List<ReportReinforcedComponentViewModel> GetReinforcedComponents();
|
|
|
|
|
List<ReportOrdersViewModel> GetOrders(ReportBindingModel model);
|
|
|
|
|
void SaveReinforcedesToWordFile(ReportBindingModel model);
|
|
|
|
|
void SaveReinforcedComponentToExcelFile(ReportBindingModel model);
|
|
|
|
|
void SaveOrdersToPdfFile(ReportBindingModel model);
|
2024-04-23 13:22:37 +04:00
|
|
|
|
}
|
|
|
|
|
}
|