示例#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;
 }
 public AccountGroupController(IGroupAccountService iGroupAccountService)
 {
     _iGroupAccountService = iGroupAccountService;
 }
 public AccountMngController(IAccountService iAccountService, IGroupAccountService iGroupAccountService)
 {
     _iGroupAccountService = iGroupAccountService;
     _iAccountService      = iAccountService;
 }