31 lines
1.5 KiB
C#
31 lines
1.5 KiB
C#
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);
|
||
/// Сохранение магазинов в файл-Word
|
||
void SaveShopsToWordFile(ReportBindingModel model);
|
||
void SaveShopCarsToExcelFile(ReportBindingModel model);
|
||
List<ReportShopCarsViewModel> GetShopCars();
|
||
List<ReportDateOrdersViewModel> GetDateOrders();
|
||
void SaveDateOrdersToPdfFile(ReportBindingModel model);
|
||
}
|
||
}
|