Esempio n. 1
0
 public AccountController(ILogger <AccountController> logger, RunAwayFromSerasaContext dbContext,
                          ITransactionAppService transactionAppService)
 {
     _logger     = logger;
     _dbContext  = dbContext;
     _appService = transactionAppService;
 }
        // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
        public void Configure(IApplicationBuilder app, IWebHostEnvironment env, RunAwayFromSerasaContext context)
        {
            if (env.IsDevelopment())
            {
                app.UseDeveloperExceptionPage();
                app.UseMigrationsEndPoint();
            }
            else
            {
                app.UseExceptionHandler("/Home/Error");
                // The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
                app.UseHsts();
            }

            context.Database.Migrate();

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

            app.UseRouting();

            app.UseAuthentication();
            app.UseAuthorization();

            app.UseEndpoints(endpoints =>
            {
                endpoints.MapControllerRoute(
                    "default",
                    "{controller=Home}/{action=Index}/{id?}");
                endpoints.MapRazorPages();
            });
        }
 public TransactionController(ILogger <TransactionController> logger, RunAwayFromSerasaContext dbContext)
 {
     _logger    = logger;
     _dbContext = dbContext;
 }