Beispiel #1
0
 public AdminController(
     IAuthenticationService authenticationService,
     IUserService userService,
     IMasterAccountService masterAccountService)
 {
     _authenticationService = authenticationService;
     _userService           = userService;
     _masterAccountService  = masterAccountService;
 }
Beispiel #2
0
 public MasterAccountController(IMasterAccountService masterAccountService)
 {
     _masterAccountService = masterAccountService;
 }