using AutomobilePlantContracts.DI; using AutomobilePlantContracts.StoragesContracts; using AutomobilePlantDatabaseImplement.Implements; namespace AutomobilePlantDatabaseImplement { public class DatabaseImplementationExtension : IImplementationExtension { public int Priority => 2; public void RegisterServices() { DependencyManager.Instance.RegisterType(); DependencyManager.Instance.RegisterType(); DependencyManager.Instance.RegisterType(); DependencyManager.Instance.RegisterType(); DependencyManager.Instance.RegisterType(); DependencyManager.Instance.RegisterType(); DependencyManager.Instance.RegisterType(); } } }