using SoftwareInstallationContracts.DI; using SoftwareInstallationContracts.StoragesContracts; using SoftwareInstallationFileImplement.Implements; namespace SoftwareInstallationFileImplement { public class FileImplementationExtension : 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(); } } }