Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using Bank_Web_App.Services;
- using BankApplication_Web.Data;
- using Microsoft.EntityFrameworkCore;
- var builder = WebApplication.CreateBuilder(args);
- // Add services to the container.
- builder.Services.AddControllersWithViews();
- builder.Services.AddDbContext<BankContext>(c => c.UseMySQL("Server=\"bankweb.mysql.database.azure.com\";UserID = \"XFreeBG\";Password=\"Bank1234\";Database=\"bankweb\";")); //Change the data here
- builder.Services.AddScoped<BankService, BankService>();
- builder.Services.AddScoped<UserService, UserService>();
- var app = builder.Build();
- // Configure the HTTP request pipeline.
- if (!app.Environment.IsDevelopment())
- {
- 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();
- }
- app.UseHttpsRedirection();
- app.UseStaticFiles();
- app.UseRouting();
- app.UseAuthorization();
- app.MapControllerRoute(
- name: "default",
- pattern: "{controller=Home}/{action=Index}/{id?}");
- app.Run();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement