25 lines
1.1 KiB
C#
25 lines
1.1 KiB
C#
|
using LawFirmContracts.BindingModels;
|
|||
|
using LawFirmContracts.ViewModels;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace LawFirmContracts.BusinessLogicContracts
|
|||
|
{
|
|||
|
public interface IReportLogic
|
|||
|
{
|
|||
|
/// Получение списка компонент с указанием, в каких изделиях используются
|
|||
|
List<ReportDocumentBlankViewModel> GetProductComponent();
|
|||
|
/// Получение списка заказов за определенный период
|
|||
|
List<ReportOrdersViewModel> GetOrders(ReportBindingModel model);
|
|||
|
/// Сохранение компонент в файл-Word
|
|||
|
void SaveComponentsToWordFile(ReportBindingModel model);
|
|||
|
/// Сохранение компонент с указаеним продуктов в файл-Excel
|
|||
|
void SaveProductComponentToExcelFile(ReportBindingModel model);
|
|||
|
/// Сохранение заказов в файл-Pdf
|
|||
|
void SaveOrdersToPdfFile(ReportBindingModel model);
|
|||
|
}
|
|||
|
}
|