예제 #1
0
 public AttemptLogsController(ILogger <AttemptLogsController> logger, IConfiguration config,
                              AttemptLogManager attemptLogManager, AssignmentManager assignmentManager,
                              ContactManager contactManager)
 {
     this.config            = config;
     this.logger            = logger;
     this.attemptLogManager = attemptLogManager;
     this.assignmentManager = assignmentManager;
     this.contactManager    = contactManager;
 }
예제 #2
0
 public RepsController(ILogger <RepsController> logger, IConfiguration config,
                       RepManager repManager, AssignmentManager assignmentManager,
                       PeriodManager periodManager, AttemptLogManager attemptLogManager)
 {
     this.config            = config;
     this.logger            = logger;
     this.repManager        = repManager;
     this.assignmentManager = assignmentManager;
     this.attemptLogManager = attemptLogManager;
     this.periodManager     = periodManager;
 }
예제 #3
0
 public PeriodsController(ILogger <PeriodsController> logger, IConfiguration config,
                          PeriodManager periodManager, AssignmentManager assignmentManager,
                          AttemptLogManager attemptLogManager, QuestionManager questionManager)
 {
     this.config            = config;
     this.logger            = logger;
     this.periodManager     = periodManager;
     this.assignmentManager = assignmentManager;
     this.attemptLogManager = attemptLogManager;
     this.questionManager   = questionManager;
 }
예제 #4
0
 public AgentsController(ILogger <AgentsController> logger, IConfiguration config,
                         AgentManager agentManager, AssignmentManager assignmentManager,
                         AttemptLogManager attemptLogManager, ContactManager contactManager,
                         ResponseManager responseManager)
 {
     this.config            = config;
     this.logger            = logger;
     this.agentManager      = agentManager;
     this.assignmentManager = assignmentManager;
     this.attemptLogManager = attemptLogManager;
     this.contactManager    = contactManager;
     this.responseManager   = responseManager;
 }