23 lines
887 B
C#
23 lines
887 B
C#
using AutomobilePlantContracts.DI;
|
|
using AutomobilePlantContracts.StoragesContracts;
|
|
using AutomobilePlantDatabaseImplement.Implements;
|
|
|
|
namespace AutomobilePlantDatabaseImplement
|
|
{
|
|
public class DatabaseImplementationExtension : IImplementationExtension
|
|
{
|
|
public int Priority => 2;
|
|
|
|
public void RegisterServices()
|
|
{
|
|
DependencyManager.Instance.RegisterType<IClientStorage, ClientStorage>();
|
|
DependencyManager.Instance.RegisterType<IComponentStorage, ComponentStorage>();
|
|
DependencyManager.Instance.RegisterType<IImplementerStorage, ImplementerStorage>();
|
|
DependencyManager.Instance.RegisterType<IMessageInfoStorage, MessageInfoStorage>();
|
|
DependencyManager.Instance.RegisterType<IOrderStorage, OrderStorage>();
|
|
DependencyManager.Instance.RegisterType<ICarStorage, CarStorage>();
|
|
DependencyManager.Instance.RegisterType<IBackUpInfo, BackUpInfo>();
|
|
}
|
|
}
|
|
}
|