public void Configure()

in generators/app/templates/default/src/Foundation/DependencyInjection/CodeFolderX/Infrastructure/DIConfigurator.cs [12:20]


        public void Configure(IServiceCollection serviceCollection)
        {
            serviceCollection.AddControllers<IController>("*.Foundation.*");
            serviceCollection.AddControllers<IHttpController>("*.Foundation.*");
            serviceCollection.AddClassesWithServiceAttribute("*.Foundation.*");

            serviceCollection.AddControllers<IController>("*.Feature.*");
            serviceCollection.AddClassesWithServiceAttribute("*.Feature.*");
        }