using Microsoft.AspNetCore.Mvc; using Microsoft.Extensions.DependencyInjection; namespace GerstITS.Examples.Api; public sealed partial class Module { #region Methods private static void RegisterMvc(IServiceCollection container) { //container.AddTransient, ApiMvcOptions>(); //container.AddTransient, MvcJsonOptions>(); container.AddMvc() .AddNewtonsoftJson(); } #endregion }