public JWTokenManager(string key, IUserReadRepo repo, IEncrypter encrypter)
 {
     this.key        = key;
     this._repo      = repo;
     this._encrypter = encrypter;
 }
示例#2
0
 public RegistrationCommandValidator(IUserReadRepo repo)
 {
     this._repo = repo;
 }
 public PersonalDataHandler(IUserReadRepo repo, IModelConverter converter)
 {
     this._repo      = repo;
     this._converter = converter;
 }
示例#4
0
 public ProfileController(IUserReadRepo repo, IModelConverter converter, IMediator mediator)
 {
     _repo           = repo;
     this._converter = converter;
     this._mediator  = mediator;
 }
 public JWTokenManager(IConfiguration config, IUserReadRepo repo, IEncrypter encrypter)
 {
     this.key        = config.GetValue <string>("Key");
     this._repo      = repo;
     this._encrypter = encrypter;
 }