using AcademicProgressBusinessLogic.BindingModels; using AcademicProgressBusinessLogic.Interfaces; using ModuleTools.Models; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace AcademicProgressDatabaseImplementation.Implementations { public class ReportService : IReportService { public OperationResultModel SaveReportToWordFile(ReportBindingModel model) { throw new NotImplementedException(); } } }