using AutomobilePlantContracts.DI; using AutomobilePlantContracts.StoragesContracts; using AutomobilePlantListImplement.Implements; namespace AutomobilePlantListImplement { 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(); } } }