public UserService(CarTrackerDbContext db, IPasswordHasher passwordHasher,
                    IRegistrationKeyService registrationKeyService)
 {
     this._db                     = db;
     this._passwordHasher         = passwordHasher;
     this._registrationKeyService = registrationKeyService;
 }
 public RegistrationKeyApiController(IRegistrationKeyService registrationKeyService)
 {
     this._registrationKeyService = registrationKeyService;
 }