コード例 #1
0
 public StudentPortalController(NEPService.UserService.IUserService userService, IEncryption encryptionService, NEPService.LogSessionService.ILogSessionService logSessionService, NEPService.CommonService.ICommonService commonService, NEPService.ClientService.IClientService clientService)
 {
     _userService       = userService;
     _encryptionService = encryptionService;
     _logSessionService = logSessionService;
     _commonService     = commonService;
     _clientService     = clientService;
 }
コード例 #2
0
 public UserController(NEPService.UserService.IUserService userService, IEncryption encryptionService, IEMail mailService, NEPService.LogSessionService.ILogSessionService logSessionService, NEPService.CommonService.ICommonService commonService, IClientService clientService)
 {
     _userService       = userService;
     _encryptionService = encryptionService;
     _mailService       = mailService;
     _logSessionService = logSessionService;
     _commonService     = commonService;
     _clientService     = clientService;
 }
コード例 #3
0
 public EnterpriseController(NEPService.CommonService.ICommonService commonService)
 {
     _commonService = commonService;
 }