PIbd-22_Smirnov_A.A._Securi.../SecuritySystem/SecuritySystemContracts/BusinessLogicsContracts/IReportLogic.cs
2024-05-08 00:49:35 +04:00

29 lines
1.1 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using SecuritySystemContracts.BindingModels;
using SecuritySystemContracts.ViewModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SecuritySystemContracts.BusinessLogicsContracts
{
public interface IReportLogic
{
//Получение списка заготовок с указанием, в каких изделиях используются
List<ReportSecureSensorViewModel> GetSecureSensor();
//Получение списка заказов за определенный период
List<ReportOrdersViewModel> GetOrders(ReportBindingModel model);
//Сохранение изделий в файл-Word
void SaveSecuresToWordFile(ReportBindingModel model);
//Сохранение заготовок с указанием изделий в файл-Excel
void SaveSecureSensorToExcelFile(ReportBindingModel model);
//Сохранение заказов в файл-Pdf
void SaveOrdersToPdfFile(ReportBindingModel model);
}
}