DepartmentProject/DepartmentPortal/AcademicProgressDatabaseImplementation/Implementations/ReportService.cs

20 lines
526 B
C#
Raw Normal View History

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();
}
}
}