|
| 1 | +using Lesson16Webserver.ViewModels; |
| 2 | +using Microsoft.AspNetCore.Builder; |
| 3 | +using Microsoft.AspNetCore.Hosting; |
| 4 | +using Microsoft.Extensions.Configuration; |
| 5 | +using Microsoft.Extensions.DependencyInjection; |
| 6 | +using Microsoft.OpenApi.Models; |
| 7 | + |
| 8 | +namespace Lesson16Webserver |
| 9 | +{ |
| 10 | + public class Startup |
| 11 | + { |
| 12 | + public Startup(IConfiguration configuration) |
| 13 | + { |
| 14 | + Configuration = configuration; |
| 15 | + } |
| 16 | + |
| 17 | + public IConfiguration Configuration { get; } |
| 18 | + |
| 19 | + // This method gets called by the runtime. Use this method to add services to the container. |
| 20 | + public void ConfigureServices(IServiceCollection services) |
| 21 | + { |
| 22 | + services.AddControllers(); |
| 23 | + services.AddSwaggerGen(c => |
| 24 | + { |
| 25 | + c.SwaggerDoc("v1", new OpenApiInfo { Title = "My API", Version = "v1" }); |
| 26 | + }); |
| 27 | + services.AddSingleton<InMemStore<Message>>(x => new InMemStore<Message>(Message.TestData())); |
| 28 | + services.AddSingleton<InMemStore<Client>>(x => new InMemStore<Client>(Client.Init())); |
| 29 | + services.AddSingleton<InMemStore<Bonsai>>(x => new InMemStore<Bonsai>(Bonsai.Init())); |
| 30 | + services.AddSingleton<InMemStore<CheckoutOption>>(x => new InMemStore<CheckoutOption>(CheckoutOption.Init())); |
| 31 | + services.AddSingleton<InMemStore<SimpleOrder>>(x => new InMemStore<SimpleOrder>(SimpleOrder.Init())); |
| 32 | + } |
| 33 | + |
| 34 | + // This method gets called by the runtime. Use this method to configure the HTTP request pipeline. |
| 35 | + public void Configure(IApplicationBuilder app, IWebHostEnvironment env) |
| 36 | + { |
| 37 | + |
| 38 | + app.UseDeveloperExceptionPage(); |
| 39 | + |
| 40 | + app.UseSwagger(); |
| 41 | + app.UseSwaggerUI(c => |
| 42 | + { |
| 43 | + c.SwaggerEndpoint("/swagger/v1/swagger.json", "My API V1"); |
| 44 | + }); |
| 45 | + |
| 46 | + app.UseHttpsRedirection(); |
| 47 | + |
| 48 | + app.UseRouting(); |
| 49 | + |
| 50 | + app.UseEndpoints(endpoints => |
| 51 | + { |
| 52 | + endpoints.MapControllers(); |
| 53 | + }); |
| 54 | + } |
| 55 | + } |
| 56 | +} |
0 commit comments