using Autofac; namespace NitroxModel.Core { /// /// Nitrox projects should inherit from this interface and register their services into the DI container using the builder method. /// public interface IAutoFacRegistrar { void RegisterDependencies(ContainerBuilder containerBuilder); } }