Exemplo 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, ILoggerFactory loggerFactor, FinancialPlannerContext financialPlannerContext)
        {
            if (env.IsDevelopment())
            {
                app.UseDeveloperExceptionPage();
            }

            app.UseDefaultFiles();
            app.UseStaticFiles();

            app.UseHttpsRedirection();

            app.UseRouting();

            app.UseAuthorization();

            app.UseEndpoints(endpoints => { endpoints.MapControllers(); });

            app.Run(async(context) =>
            {
                await context.Response.WriteAsync("Hello World!");
            });
            app.UseEndpoints(endpoints =>
            {
                endpoints.MapControllers();
            });

            financialPlannerContext.EnsureSeedDataForContext();
        }
 public DummyController(FinancialPlannerContext ctx)
 {
     _ctx = ctx;
 }