PIbd-23-Radaev-A.V.-GiftShop/GiftShop/GiftShopListImplement/ListImplementationExtension.cs
Arkadiy Radaev 44fa88599e res8
2024-05-17 13:28:57 +04:00

24 lines
850 B
C#

using GiftShopContracts.DI;
using GiftShopContracts.StoragesContracts;
using GiftShopListImplement.Implements;
namespace GiftShopListImplement
{
public class ListImplementationExtension : IImplementationExtension
{
public int Priority => 0;
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<IGiftStorage, GiftStorage>();
DependencyManager.Instance.RegisterType<IBackUpInfo, BackUpInfo>();
}
}
}