Ejemplo n.º 1
0
        // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
        public void Configure(IApplicationBuilder app, IHostingEnvironment env, ShowDbContext showDbContext)
        {
            if (env.IsDevelopment())
            {
                app.UseDeveloperExceptionPage();
            }
            else
            {
                // The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
                app.UseHsts();
            }

            app.UseHttpsRedirection();


            app.UseCors(builder =>
                        builder.AllowAnyOrigin()
                        .AllowAnyMethod()
                        .AllowAnyHeader());

            app.UseAuthentication();
            app.UseMvc();

            DbInitializer.Initialize(showDbContext);
        }
 public Index1Model(ShowDbContext context, ILogger <Index1Model> logger)
 {
     _context = context;
     _logger  = logger;
 }
Ejemplo n.º 3
0
 public Trivia2Controller(ShowDbContext context)
 {
     this.context = context;
 }
Ejemplo n.º 4
0
 public TvMazeStorageRepository(ShowDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Ejemplo n.º 5
0
 public TriviaController(ShowDbContext showDbContext)
 {
     showDb = showDbContext;
 }