예제 #1
0
 public RegisterController(IAccountService iAccountService, IGroupAccountService iGroupAccountService)
 {
     _iGroupAccountService = iGroupAccountService;
     _iAccountService      = iAccountService;
 }
예제 #2
0
 public DecentralizationController(IGroupAccountService iGroupAccountService, IRoleDetailService iRoleDetailService, IRoleService iRoleService)
 {
     _iGroupAccountService = iGroupAccountService;
     _iRoleDetailService   = iRoleDetailService;
     _iRoleService         = iRoleService;
 }
예제 #3
0
 public AccountGroupController(IGroupAccountService iGroupAccountService)
 {
     _iGroupAccountService = iGroupAccountService;
 }
예제 #4
0
 public AccountMngController(IAccountService iAccountService, IGroupAccountService iGroupAccountService)
 {
     _iGroupAccountService = iGroupAccountService;
     _iAccountService      = iAccountService;
 }