19 lines
468 B
C#
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);
|
|
}
|
|
}
|