// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
 public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
 {
     Logger.LogInformationWithContext("Configuring app.");
     BasicConfiguration.Configure(app, env);
 }
 // This method gets called by the runtime. Use this method to add services to the container.
 public void ConfigureServices(IServiceCollection services)
 {
     Logger.LogInformationWithContext("Configuring service.");
     BasicConfiguration.ConfigureBasicServices(services);
 }