예제 #1
0
 public UserService(ILogger <UserService> logger, TrackLocationContext context)
 {
     _logger  = logger;
     _context = context;
 }
예제 #2
0
 public CarsRepository(TrackLocationContext _context)
 {
     this._context = _context;
 }
예제 #3
0
 public AuthenticationController(IUserService userService, IJwtAuthManager jwtAuthManager, TrackLocationContext context)
 {
     _userService    = userService;
     _jwtAuthManager = jwtAuthManager;
 }
예제 #4
0
 public LocationsRepository(TrackLocationContext context)
 {
     _context = context;
 }
예제 #5
0
 public UserCarsRepository(TrackLocationContext context)
 {
     _context = context;
 }
예제 #6
0
 public FamilyCarsRepository(TrackLocationContext context)
 {
     _context = context;
 }