public UserAccountsController(IUserAccountBL userAccountBL)
 {
     _userAccountBL = userAccountBL;
 }
예제 #2
0
 public AccountController(IUserAccountBL userAccountBL, IConfiguration config)
 {
     this.config             = config;
     this.userAuthentication = new UserAuthenticationJWT(this.config);
     this.userAccountBL      = userAccountBL;
 }