using Autofac; namespace MfGames.ToolBuilder.Tables; /// /// The Autofac module to pull in the components inside this assembly. /// public class ToolBuilderTablesModule : Module { /// protected override void Load(ContainerBuilder builder) { builder .RegisterType() .AsSelf() .AsImplementedInterfaces(); } }