Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

WebAppExtension.cs 255B

12345678910
  1. namespace Diligent.WebAPI.Host.Extensions;
  2. public static class WebAppExtension
  3. {
  4. public static void SetupData(this WebApplication app)
  5. {
  6. IServiceScope serviceScope = app.Services.CreateScope();
  7. serviceScope.SetupData();
  8. }
  9. }