public DriverController(
     AppDbContext appDbContext,
     IDriverService driverService,
     IUniversalService universalService
     )
 {
     this.driverService    = driverService;
     this.universalService = universalService;
     this.appDbContext     = appDbContext;
 }
 public CustomAuthStateProvider(ILocalStorageService localStorage, IUniversalService universalService)
 {
     this.localStorage     = localStorage;
     this.universalService = universalService;
 }