using MotorPlantContracts.DI; using MotorPlantContracts.StoragesContracts; using MotorPlantFileImplement.Implements; namespace MotorPlantFileImplement { public class ImplementationExtension : IImplementationExtension { public int Priority => 1; public void RegisterServices() { DependencyManager.Instance.RegisterType(); DependencyManager.Instance.RegisterType(); DependencyManager.Instance.RegisterType(); DependencyManager.Instance.RegisterType(); DependencyManager.Instance.RegisterType(); DependencyManager.Instance.RegisterType(); DependencyManager.Instance.RegisterType(); } } }