using SecuritySystemContracts.BindingModels; using SecuritySystemContracts.ViewModels; namespace SecuritySystemContracts.BusinessLogicsContracts { public interface IReportLogic { /// /// Получение списка компонент с указанием, в каких изделиях используются /// /// List GetSecureComponent(); /// /// Получение списка заказов за определенный период /// /// /// List GetOrders(ReportBindingModel model); /// /// Сохранение компонент в файл-Word /// /// void SaveSecuresToWordFile(ReportBindingModel model); /// /// Сохранение компонент с указаеним продуктов в файл-Excel /// /// void SaveSecureComponentToExcelFile(ReportBindingModel model); /// /// Сохранение заказов в файл-Pdf /// /// void SaveOrdersToPdfFile(ReportBindingModel model); } }