// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
        public void Configure(
            IApplicationBuilder app,
            IHostingEnvironment env,
            BlogDbContext blogCtx,
            ConcertDbContext concertCtx
            )
        {
            if (env.IsDevelopment())
            {
                app.UseDeveloperExceptionPage();
                app.UseDatabaseErrorPage();
            }
            else
            {
                app.UseExceptionHandler("/Home/Error");
                app.UseHsts();
            }

            app.UseHttpsRedirection();
            app.UseStaticFiles();
            app.UseCookiePolicy();

            app.UseAuthentication();

            app.UseMvc(routes =>
            {
                routes.MapRoute(
                    name: "default",
                    template: "{controller=Home}/{action=Index}/{id?}");
            });

            BlogDbInit.Init(blogCtx);
            ConcertDbInit.Init(concertCtx);
        }
 public ConcertsController(ConcertDbContext context, IHostingEnvironment env)
 {
     _ctx = context;
     _env = env;
 }
Exemple #3
0
 public ConcertController(ConcertDbContext context)
 {
     _context = context;
 }