ISEbd-21.Gordeev.I.V.SushiB.../SushiBar/SushiBarContracts/BusinessLogicsContracts/IReportLogic.cs

40 lines
1.4 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 SushiBarContracts.BindingModels;
using SushiBarContracts.ViewModels;
namespace SushiBarContracts.BusinessLogicsContracts
{
public interface IReportLogic
{
/// <summary>
/// Получение списка индгредиентов с указанием, в каких суши используются
/// </summary>
/// <returns></returns>
List<ReportSushiIngredientViewModel> GetSushiIngredient();
/// <summary>
/// Получение списка заказов за определенный период
/// </summary>
/// <param name="model"></param>
/// <returns></returns>
List<ReportOrdersViewModel> GetOrders(ReportBindingModel model);
/// <summary>
/// Сохранение индгредиентов в файл-Word
/// </summary>
/// <param name="model"></param>
void SaveListSushiToWordFile(ReportBindingModel model);
/// <summary>
/// Сохранение индгредиентов с указаеним суши в файл-Excel
/// </summary>
/// <param name="model"></param>
void SaveSushiIngredientToExcelFile(ReportBindingModel model);
/// <summary>
/// Сохранение заказов в файл-Pdf
/// </summary>
/// <param name="model"></param>
void SaveOrdersToPdfFile(ReportBindingModel model);
}
}