You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Program.cs 236B

123456789101112
  1. var builder = WebApplication.CreateBuilder(args);
  2. builder.ConfigureHost();
  3. builder.ConfigureData();
  4. builder.ConfigureBusiness();
  5. var app = builder.Build();
  6. app.ConfigureHost();
  7. app.ConfigureData();
  8. app.ConfigureBusiness();
  9. app.Run();