PIbd-23_Sergunov_M.A._GiftShop/GiftShop/GiftShopDatabaseImplement/DatabaseImplementationExtension.cs

24 lines
862 B
C#
Raw Normal View History

2023-06-03 01:27:48 +04:00
using GiftShopContracts.DI;
using GiftShopContracts.StoragesContracts;
using GiftShopDatabaseImplement.Implements;
namespace GiftShopDatabaseImplement
{
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<IGiftStorage, GiftStorage>();
DependencyManager.Instance.RegisterType<IBackUpInfo, BackUpInfo>();
}
}
}