2022-03-28 22:03:10 +04:00
|
|
|
|
using AcademicProgressBusinessLogic.BusinessLogic;
|
|
|
|
|
using AcademicProgressBusinessLogic.BusinessLogics;
|
|
|
|
|
using AcademicProgressBusinessLogic.Interfaces;
|
2022-03-15 13:20:46 +04:00
|
|
|
|
using AcademicProgressDatabaseImplementation.Implementations;
|
|
|
|
|
using ModuleTools.BusinessLogics;
|
|
|
|
|
using ModuleTools.Interfaces;
|
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace AcademicProgressDatabaseImplementation
|
|
|
|
|
{
|
|
|
|
|
public class AcademicProgressImplementationExtensions : IImplementationExtension
|
|
|
|
|
{
|
|
|
|
|
public void RegisterServices()
|
|
|
|
|
{
|
2022-03-16 12:27:40 +04:00
|
|
|
|
DependencyManager.Instance.RegisterType<IStudentAcademicProgressService, StudentAcademicProgressService>();
|
2022-03-28 22:03:10 +04:00
|
|
|
|
DependencyManager.Instance.RegisterType<ReportLogic>();
|
|
|
|
|
|
2022-03-15 13:20:46 +04:00
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|