Пример #1
0
 public ExamController(NEPService.ExamQuestionService.IExamQuestionService examService, NEPService.ExamInternalService.IExamInternalService examInternalService, IEncryption encryptionService, NEPService.LogSessionService.ILogSessionService logService)
 {
     _examService         = examService;
     _examInternalService = examInternalService;
     _encryptionService   = encryptionService;
     _logService          = logService;
 }
Пример #2
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;
 }
 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;
 }
Пример #4
0
 public LogSessionController(NEPService.LogSessionService.ILogSessionService logsessionService)
 {
     _logsessionService = logsessionService;
 }