コード例 #1
0
 public InlineUrlKeysController(InlineUrlKeysRepository inlineUrlKeysRepository, SystemUserRepository systemUserRepository, BotsRepository botsRepository, IConfiguration configuration)
 {
     _inlineUrlKeysRepository = inlineUrlKeysRepository;
     _systemUserRepository    = systemUserRepository;
     _configuration           = configuration;
     _botsRepository          = botsRepository;
 }
コード例 #2
0
 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();
 }
コード例 #3
0
 public InlineUrlKeysApiController(InlineUrlKeysRepository inlineUrlKeysRepository)
 {
     _inlineUrlKeysRepository = inlineUrlKeysRepository;
 }