Pibd-21_Ievlewa_MD._Precast.../PrecastConcretePlant/PrecastConcretePlantContracts/BusinessLogicsContracts/IReportLogic.cs
2024-04-05 16:36:10 +03:00

29 lines
1.1 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using PrecastConcretePlantContracts.ViewModels;
using PrecastConcretePlantContracts.BindingModels;
namespace PrecastConcretePlantContracts.BusinessLogicsContracts
{
public interface IReportLogic
{
// Получение списка компонент с указанием, в каких изделиях используются
List<ReportReinforcedComponentViewModel> GetReinforcedComponents();
// Получение списка заказов за определенный период
List<ReportOrdersViewModel> GetOrders(ReportBindingModel model);
// Сохранение компонент в файл-Word
void SaveReinforcedsToWordFile(ReportBindingModel model);
// Сохранение компонент с указаеним продуктов в файл-Excel
void SaveReinforcedComponentToExcelFile(ReportBindingModel model);
// Сохранение заказов в файл-Pdf
void SaveOrdersToPdfFile(ReportBindingModel model);
}
}