예제 #1
0
        public void TestInit()
        {
            TestReviewContext Context = new TestReviewContext();

            ReviewDataInitializer.FillData(Context);
            Repo = new ReviewRepository(Context);
        }
예제 #2
0
        // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
        public void Configure(IApplicationBuilder app, IHostingEnvironment env, ReviewDataInitializer rdi)
        {
            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.UseMvc();
            app.UseStaticFiles();
            app.UseSwaggerUi3();
            app.UseSwagger();
            app.UseAuthentication();
            app.UseCors("AllowAllOrigins");
            rdi.InitializeData();
        }