public UsersController(ParkBuddiesContext context, IUserService userService, IMapper mapper, IOptions <AppSettings> appSettings) { _context = context; _userService = userService; _mapper = mapper; _appSettings = appSettings.Value; }
public UserReportsController(ParkBuddiesContext context) { _context = context; }
public CarparkCompaniesController(ParkBuddiesContext context) { _context = context; }
public CarparkLotsController(ParkBuddiesContext context) { _context = context; }
public UserService(ParkBuddiesContext context) { _context = context; }
public CarparkGraphDatasController(ParkBuddiesContext context) { _context = context; }