DepartmentProject/DepartmentPortal/Department/DepartmentDatabaseImplementation.csproj/DepartmentImplementationExtensions.cs

40 lines
1.9 KiB
C#
Raw Normal View History

using DepartmentBusinessLogic.Interfaces;
using DepartmentDatabaseImplementation.Implementations;
using ModuleTools.BusinessLogics;
using ModuleTools.Interfaces;
namespace DepartmentDatabaseImplementation
{
public class DepartmentImplementationExtensions : IImplementationExtension
{
public void RegisterServices()
{
DependencyManager.Instance.RegisterType<IPostService, PostService>();
DependencyManager.Instance.RegisterType<IEmployeeService, EmployeeService>();
DependencyManager.Instance.RegisterType<IEmployeePostService, EmployeePostService>();
2021-04-03 13:41:19 +04:00
DependencyManager.Instance.RegisterType<IClassroomService, ClassroomService>();
2021-04-03 19:03:56 +04:00
DependencyManager.Instance.RegisterType<IDisciplineBlockService, DisciplineBlockService>();
DependencyManager.Instance.RegisterType<IDisciplineService, DisciplineService>();
DependencyManager.Instance.RegisterType<ILecturerAcademicDegreeService, LecturerAcademicDegreeService>();
DependencyManager.Instance.RegisterType<ILecturerAcademicRankService, LecturerAcademicRankService>();
DependencyManager.Instance.RegisterType<ILecturerService, LecturerService>();
DependencyManager.Instance.RegisterType<ILecturerPostService, LecturerPostService>();
DependencyManager.Instance.RegisterType<IEducationDirectionService, EducationDirectionService>();
2021-04-06 22:07:11 +04:00
DependencyManager.Instance.RegisterType<ITimeNormService, TimeNormService>();
DependencyManager.Instance.RegisterType<IAcademicPlanService, AcademicPlanService>();
DependencyManager.Instance.RegisterType<IAcademicPlanRecordService, AcademicPlanRecordService>();
DependencyManager.Instance.RegisterType<IAcademicPlanRecordTimeNormHourService, AcademicPlanRecordTimeNormHourService>();
2021-04-12 10:01:42 +04:00
DependencyManager.Instance.RegisterType<IStudentGroupService, StudentGroupService>();
2021-04-12 16:57:29 +04:00
DependencyManager.Instance.RegisterType<IStudentService, StudentService>();
}
}
}