PIbd-22_Isaeva_A.I._FishFac.../FishFactoryFileImplement/Implements/ImplementationExtension.cs

22 lines
849 B
C#
Raw Normal View History

2024-06-18 15:56:18 +04:00
using FishFactoryContracts.DependencyInjection;
using FishFactoryContracts.StoragesContracts;
namespace FishFactoryFileImplement.Implements
{
public class ImplementationExtension : IImplementationExtension
{
2024-06-19 13:54:56 +04:00
public int Priority => 0;
2024-06-18 15:56:18 +04:00
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<ICannedStorage, CannedStorage>();
DependencyManager.Instance.RegisterType<IBackUpInfo, BackUpInfo>();
}
}
}