using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Hosting; using RIZO.Server.IService; using RIZO.Server.Service; using RIZO.Server.Configuration; using RIZO.Server.IConfiguration; using Infrastructure; namespace RIZO.Server.Start { public class Startup { public Startup(Microsoft.Extensions.Configuration.IConfiguration configuration) { Configuration = configuration; } public Microsoft.Extensions.Configuration.IConfiguration Configuration { get; } // This method gets called by the runtime. Use this method to add services to the container. public void ConfigureServices(IServiceCollection services) { services.AddSingleton(); services.AddTransient(); services.AddTransient(); services.AddTransient(); services.AddTransient(); services.AddTransient(); services.AddControllers(); services.AddLogo(); } // This method gets called by the runtime. Use this method to configure the HTTP request pipeline. public void Configure(IApplicationBuilder app, IWebHostEnvironment env) { if (env.IsDevelopment()) { app.UseDeveloperExceptionPage(); } app.UseRouting(); app.UseAuthorization(); app.UseEndpoints(endpoints => { endpoints.MapControllers(); }); } } }