using AutomobilePlantContracts.DI; using AutomobilePlantContracts.StorageContracts; using AutomobilePlantFileImplement.Implements; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace AutomobilePlantFileImplement { public class FileImplementationExtension : 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(); } } }