Esempio n. 1
0
 public QuestionnaireController(ILogger <QuestionnaireController> logger,
                                IParticipantsAuthenticationService participantsAuthenticationService,
                                IParticipantsService participantsService)
 {
     _logger = logger;
     _participantsAuthenticationService = participantsAuthenticationService;
     _participantsService = participantsService;
 }
Esempio n. 2
0
 public LoginController(ILogger <AlexaController> logger,
                        IParticipantsAuthenticationService participantsAuthenticationService,
                        IParticipantsService participantsService)
 {
     _logger = logger;
     _participantsAuthenticationService = participantsAuthenticationService;
     _participantsService = participantsService;
 }
Esempio n. 3
0
 public AlexaController(ILogger <AlexaController> logger, IConfiguration configuration,
                        IParticipantsService participantsService,
                        IParticipantsAuthenticationService participantsAuthenticationService)
 {
     _logger              = logger;
     _configuration       = configuration;
     _participantsService = participantsService;
     _participantsAuthenticationService = participantsAuthenticationService;
 }