public BotsController(IConfiguration configuration, UsersRepository usersRepository,
                       BotsRepository botsRepository,
                       TextMessageAnswersRepository textMessageAnswersRepository, InterviewsRepository interviewsRepository,
                       InterviewAnswersRepository interviewAnswersRepository, InlineUrlKeysRepository inlineUrlKeysRepository,
                       InlineKeysRepository inlineKeysRepository, SystemUserRepository systemUserRepository)
 {
     _configuration   = configuration;
     _usersRepository = usersRepository;
     _botsRepository  = botsRepository;
     _textMessageAnswersRepository = textMessageAnswersRepository;
     _interviewsRepository         = interviewsRepository;
     _interviewAnswersRepository   = interviewAnswersRepository;
     _inlineUrlKeysRepository      = inlineUrlKeysRepository;
     _inlineKeysRepository         = inlineKeysRepository;
     _systemUserRepository         = systemUserRepository;
     _httpClient = new HttpClient();
 }
示例#2
0
 public InterviewAnswersApiController(InterviewAnswersRepository interviewAnswersRepository)
 {
     _interviewAnswersRepository = interviewAnswersRepository;
 }