PIbd22_NikiforovaMV_Automob.../AutomobilePlantContracts/BusinessLogicContracts/IReportLogic.cs

25 lines
1.1 KiB
C#
Raw Normal View History

2024-05-11 13:39:57 +04:00
using AutomobilePlantContracts.BindingModels;
using AutomobilePlantContracts.ViewModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AutomobilePlantContracts.BusinessLogicContracts
{
public interface IReportLogic
{
/// Получение списка компонент с указанием, в каких изделиях используются
List<ReportCarComponentViewModel> GetCarComponents();
/// Получение списка заказов за определенный период
List<ReportOrdersViewModel> GetOrders(ReportBindingModel model);
/// Сохранение компонент в файл-Word
void SaveCarsToWordFile(ReportBindingModel model);
/// Сохранение компонент с указаеним продуктов в файл-Excel
void SaveCarComponentToExcelFile(ReportBindingModel model);
/// Сохранение заказов в файл-Pdf
void SaveOrdersToPdfFile(ReportBindingModel model);
}
}