예제 #1
0
 public HomeController(IAccountService accountService, IAccountRelationDataService accountRelationDataService,
                       IUserService userService)
 {
     _accountService             = accountService;
     _accountRelationDataService = accountRelationDataService;
     _userService = userService;
 }
예제 #2
0
 public UserController(IUserService userService,
                       IAccountRelationDataService accountRelationDataService,
                       IHistoryService rechargeHistoryService)
 {
     _userService = userService;
     _accountRelationDataService = accountRelationDataService;
     _rechargeHistoryService     = rechargeHistoryService;
 }
 public ManagementController(IAccountService accountService, IRankService rankService,
                             IAccountRelationDataService accountRelationDataService,
                             IUserService userService)
 {
     _accountService             = accountService;
     _rankService                = rankService;
     _accountRelationDataService = accountRelationDataService;
     _userService                = userService;
 }