Beispiel #1
0
 public DeleteUserHandler(
     IRepository <User> repository,
     IAuthZeroClientRepository authZeroClientRepository)
 {
     _repository = repository;
     _authZeroClientRepository = authZeroClientRepository;
 }
 public CreateUserHandler(
     IRepository <User> repository,
     IAppSettings appSettings,
     IAuthZeroClientRepository authZeroClientRepository) : base(repository)
 {
     _appSettings = appSettings;
     _authZeroClientRepository = authZeroClientRepository;
 }
 public CreateUserFromAuthZeroHandler(
     IRepository <User> repository,
     IAppSettings appSettings,
     IAuthZeroClientRepository authZeroClientRepository)
 {
     _repository  = repository;
     _appSettings = appSettings;
     _authZeroClientRepository = authZeroClientRepository;
 }