2021-04-03 10:02:32 +04:00
|
|
|
|
using DepartmentBusinessLogic.Interfaces;
|
|
|
|
|
using DepartmentDatabaseImplementation.Implementations;
|
|
|
|
|
using ModuleTools.BusinessLogics;
|
|
|
|
|
using ModuleTools.Interfaces;
|
|
|
|
|
|
|
|
|
|
namespace DepartmentDatabaseImplementation
|
|
|
|
|
{
|
|
|
|
|
public class DepartmentImplementationExtensions : IImplementationExtension
|
|
|
|
|
{
|
|
|
|
|
public void RegisterServices()
|
|
|
|
|
{
|
|
|
|
|
DependencyManager.Instance.RegisterType<IEmployeePostService, EmployeePostService>();
|
|
|
|
|
DependencyManager.Instance.RegisterType<IEmployeeService, EmployeeService>();
|
|
|
|
|
DependencyManager.Instance.RegisterType<IEmployeeEmployeePostService, EmployeeEmployeePostService>();
|
2021-04-03 13:41:19 +04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
DependencyManager.Instance.RegisterType<IClassroomService, ClassroomService>();
|
2021-04-03 10:02:32 +04:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|