48 lines
1.7 KiB
C#
48 lines
1.7 KiB
C#
using AircraftPlantContracts.BindingModels;
|
||
using AircraftPlantContracts.ViewModels;
|
||
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using System.Threading.Tasks;
|
||
|
||
namespace AircraftPlantContracts.BusinessLogicsContracts
|
||
{
|
||
/// <summary>
|
||
/// Интерфейс для описания работы с отчетами
|
||
/// </summary>
|
||
public interface IReportLogic
|
||
{
|
||
/// <summary>
|
||
/// Получение списка изделий с указанием используемых компонентов
|
||
/// </summary>
|
||
/// <returns></returns>
|
||
List<ReportPlaneComponentViewModel> GetPlaneComponents();
|
||
|
||
/// <summary>
|
||
/// Получение списка заказов за определенный период
|
||
/// </summary>
|
||
/// <param name="model"></param>
|
||
/// <returns></returns>
|
||
List<ReportOrdersViewModel> GetOrders(ReportBindingModel model);
|
||
|
||
/// <summary>
|
||
/// Сохранение изделий в файл-Word
|
||
/// </summary>
|
||
/// <param name="model"></param>
|
||
void SavePlanesToWordFile(ReportBindingModel model);
|
||
|
||
/// <summary>
|
||
/// Сохранение изделий с указаеним компонентов в файл-Excel
|
||
/// </summary>
|
||
/// <param name="model"></param>
|
||
void SavePlaneComponentsToExcelFile(ReportBindingModel model);
|
||
|
||
/// <summary>
|
||
/// Сохранение заказов в файл-Pdf
|
||
/// </summary>
|
||
/// <param name="model"></param>
|
||
void SaveOrdersToPdfFile(ReportBindingModel model);
|
||
}
|
||
}
|