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