2023-03-13 00:05:47 +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);
|
2023-04-10 02:25:54 +04:00
|
|
|
|
/// Сохранение магазинов в файл-Word
|
|
|
|
|
void SaveShopsToWordFile(ReportBindingModel model);
|
|
|
|
|
void SaveShopCarsToExcelFile(ReportBindingModel model);
|
|
|
|
|
List<ReportShopCarsViewModel> GetShopCars();
|
|
|
|
|
List<ReportDateOrdersViewModel> GetDateOrders();
|
|
|
|
|
void SaveDateOrdersToPdfFile(ReportBindingModel model);
|
2023-03-13 00:05:47 +04:00
|
|
|
|
}
|
|
|
|
|
}
|