DepartmentProject/DepartmentPortal/AcademicProgressBusinessLogic/Interfaces/IReportService.cs
2022-03-16 12:27:40 +04:00

19 lines
468 B
C#

using AcademicProgressBusinessLogic.BindingModels;
using ModuleTools.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AcademicProgressBusinessLogic.Interfaces
{
/// <summary>
/// Сервис работы по выгрузке отчета
/// </summary>
public interface IReportService
{
OperationResultModel SaveReportToWordFile(ReportBindingModel model);
}
}