Exemple #1
0
 public UserAccountBL(IUserAccountRL userRegistrationsRL, IConfiguration config)
 {
     this.userAccountRL   = userRegistrationsRL;
     userDetailValidation = new UserDetailValidation();
     userAuthentication   = new UserAuthenticationJWT(config);
     msmq = new MSMQService(config);
 }
 public AccountController(IUserAccountBL userAccountBL, IConfiguration config)
 {
     this.config             = config;
     this.userAuthentication = new UserAuthenticationJWT(this.config);
     this.userAccountBL      = userAccountBL;
 }