2024-04-03 00:11:17 +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
|
|
|
|
|
{
|
|
|
|
|
List<ReportReinforcedComponentViewModel> GetReinforcedComponents();
|
|
|
|
|
|
2024-06-16 13:37:46 +04:00
|
|
|
|
List<ReportShopReinforcedViewModel> GetShopReinforceds();
|
|
|
|
|
|
2024-04-03 00:11:17 +04:00
|
|
|
|
List<ReportOrdersViewModel> GetOrders(ReportBindingModel model);
|
|
|
|
|
|
2024-06-16 13:37:46 +04:00
|
|
|
|
List<ReportOrdersByDateViewModel> GetGroupedByDateOrders();
|
|
|
|
|
|
2024-04-03 00:11:17 +04:00
|
|
|
|
void SaveReinforcedsToWordFile(ReportBindingModel model);
|
|
|
|
|
|
2024-06-16 13:37:46 +04:00
|
|
|
|
void SaveShopsToWordFile(ReportBindingModel model);
|
|
|
|
|
|
2024-04-03 00:11:17 +04:00
|
|
|
|
void SaveReinforcedComponentToExcelFile(ReportBindingModel model);
|
|
|
|
|
|
2024-06-16 13:37:46 +04:00
|
|
|
|
void SaveShopReinforcedToExcelFile(ReportBindingModel model);
|
|
|
|
|
|
2024-04-03 00:11:17 +04:00
|
|
|
|
void SaveOrdersToPdfFile(ReportBindingModel model);
|
2024-06-16 13:37:46 +04:00
|
|
|
|
|
|
|
|
|
void SaveGroupedOrdersToPdfFile(ReportBindingModel model);
|
2024-04-03 00:11:17 +04:00
|
|
|
|
}
|
|
|
|
|
}
|