using AcademicProgressBusinessLogic.BindingModels; using AcademicProgressBusinessLogic.Interfaces; using DepartmentBusinessLogic.Interfaces; using ModuleTools.BusinessLogics; using ModuleTools.Enums; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace AcademicProgressBusinessLogic.BusinessLogics { /// /// Логика работы с отчетами /// public class ReportBusinessLogic : CoreBusinessLogic { /// /// Серивс для работы с отчетами /// private readonly IReportService _service; private readonly IStudentService _studentService; /// /// Логика работы с отчетом /// /// public ReportBusinessLogic(IReportService service, IStudentService _studentService) { this._studentService = _studentService; _service = service; _serviceOperation = AccessOperation.Отчет_успеваемость; _entity = "Отчеты для успеваемости"; } public void SaveReportToWordFile(ReportBindingModel model) { /* SaveToWord.CreateDoc(new WordInfo { FileName = model.FolderName, Title = "Список заявок", RequestFlowers = GetRequestPlaces() });*/ } } }