2023-04-06 22:52:23 +04:00
|
|
|
|
using SchoolContracts.BindingModel;
|
|
|
|
|
using SchoolContracts.ViewModels;
|
2023-04-07 23:28:12 +04:00
|
|
|
|
using SchoolDataModels.Models;
|
2023-04-06 22:52:23 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace SchoolContracts.BusinessLogicsContracts
|
|
|
|
|
{
|
|
|
|
|
public interface IReportLogic
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2023-04-07 23:28:12 +04:00
|
|
|
|
/// Получение списка кружков
|
2023-04-06 22:52:23 +04:00
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns></returns>
|
2023-04-07 23:28:12 +04:00
|
|
|
|
List<ReportCirclesViewModel> GetCircles(ReportBindingModel model);
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Получение списка затрат за определенный период
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="model"></param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
//List<ReportOrdersViewModel> GetExpenses(ReportBindingModel model);
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Сохранение компонент в файл-Word
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="model"></param>
|
|
|
|
|
void SaveComponentsToWordFile(ReportBindingModel model);
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Сохранение компонент с указаеним продуктов в файл-Excel
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="model"></param>
|
|
|
|
|
void SaveManufactureComponentToExcelFile(ReportBindingModel model);
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Сохранение заказов в файл-Pdf
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="model"></param>
|
|
|
|
|
void SaveOrdersToPdfFile(ReportBindingModel model);
|
2023-04-06 22:52:23 +04:00
|
|
|
|
}
|
|
|
|
|
}
|