// 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() || env.IsStaging()) { app.UseSwagger(); app.UseSwaggerUI(options => options.SwaggerEndpoint("/swagger/v1/swagger.json", "Trip Tracker v1")); } if (env.IsDevelopment()) { app.UseDeveloperExceptionPage(); } //app.UseMvc NOT originally here // app.UseMvc( ); TripContext.SeedData(app.ApplicationServices); //Added DesktopComputerContext.SeedData(app.ApplicationServices); app.UseHttpsRedirection(); app.UseRouting(); app.UseAuthorization(); app.UseEndpoints(endpoints => { endpoints.MapControllers(); }); }
public DesktopComputersController(DesktopComputerContext context) { _context = context; }