Example #1
0
 public UserAuthenticationTokenService(CarTrackerDbContext db, IPasswordHasher passwordHasher,
                                       IRequestInformation requestInformation)
 {
     this._db                 = db;
     this._passwordHasher     = passwordHasher;
     this._requestInformation = requestInformation;
 }
 public UserService(CarTrackerDbContext db, IPasswordHasher passwordHasher,
                    IRegistrationKeyService registrationKeyService)
 {
     this._db                     = db;
     this._passwordHasher         = passwordHasher;
     this._registrationKeyService = registrationKeyService;
 }
 public PlaceService(CarTrackerDbContext db, IPlaceRequester placeRequester,
                     IGooglePlaceService googlePlaceService)
 {
     this._db                 = db;
     this._placeRequester     = placeRequester;
     this._googlePlaceService = googlePlaceService;
 }
 public TripProcessor(CarTrackerDbContext db, IPlaceService placeService,
                      ITripService tripService, ITripPossiblePlaceService tripPossiblePlaceService,
                      IServerLogger logger)
 {
     this._db                       = db;
     this._placeService             = placeService;
     this._tripService              = tripService;
     this._tripPossiblePlaceService = tripPossiblePlaceService;
     this._logger                   = logger;
 }
 public RequestLogService(CarTrackerDbContext db)
 {
     _db = db;
 }
 public CarSupportedCommandsService(CarTrackerDbContext db)
 {
     this._db = db;
 }
Example #7
0
 public GooglePlaceService(CarTrackerDbContext db)
 {
     this._db = db;
 }
Example #8
0
 public TripService(CarTrackerDbContext db)
 {
     this._db = db;
 }
 public RegistrationKeyService(CarTrackerDbContext db)
 {
     this._db = db;
 }
 public ServerLogService(CarTrackerDbContext db)
 {
     _db = db;
 }
 public ReaderLogService(CarTrackerDbContext db)
 {
     this._db = db;
 }
Example #12
0
 public CarMaintenanceService(CarTrackerDbContext db)
 {
     this._db = db;
 }
Example #13
0
 public TripPossiblePlaceService(CarTrackerDbContext db)
 {
     this._db = db;
 }
Example #14
0
 public UserPlaceService(CarTrackerDbContext db, IRequestInformation requestInformation)
 {
     _db = db;
     _requestInformation = requestInformation;
 }
Example #15
0
 public CarService(CarTrackerDbContext db, IRequestInformation requestInformation)
 {
     this._db            = db;
     _requestInformation = requestInformation;
 }