// This method gets called by the runtime. Use this method to configure the HTTP request pipeline. public void Configure(IApplicationBuilder app, IHostingEnvironment env, ApplicationDbContext context, UserManager <ApplicationUser> userManager) { if (env.IsDevelopment()) { app.UseDeveloperExceptionPage(); app.UseBrowserLink(); app.UseDatabaseErrorPage(); } else { app.UseExceptionHandler("/Home/Error"); } app.UseStaticFiles(); app.UseAuthentication(); DatabaseSeed.SeedUsers(userManager); DatabaseSeed.SeedVehicles(context); app.UseMvc(routes => { routes.MapRoute( name: "default", template: "{controller=Vehicle}/{action=Index}/{id?}"); }); }