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(); DependencyManager.Instance.RegisterType(); DependencyManager.Instance.RegisterType(); DependencyManager.Instance.RegisterType(); DependencyManager.Instance.RegisterType(); DependencyManager.Instance.RegisterType(); DependencyManager.Instance.RegisterType(); } } }