public UserRepository(VroomAutoDbContext dbContext) : base(dbContext)
 {
 }
 public UnwantedUsersController(VroomAutoDbContext context)
 {
     _context = context;
 }
 public BaseRepository(VroomAutoDbContext dbContext)
 {
     this.dbContext = dbContext;
 }
 public CarsController(VroomAutoDbContext context)
 {
     _context = context;
 }
 public HistoriesController(VroomAutoDbContext context)
 {
     _context = context;
 }