public DummyController(ITweetRepository tweetRepository,
                        IAzureServices azureServices,
                        IBaseRepository <Tweet> baseRepository)
 {
     _tweetRepository = tweetRepository;
     _azureService    = azureServices;
     _baseRepository  = baseRepository;
 }
 public HashtagHistoryController(ICommandDispatcher commandDispatcher,
                                 IQueryDispatcher queryDispatcher,
                                 IAzureServices azureServices,
                                 IHelperService helperService)
 {
     _commandDispatcher = commandDispatcher;
     _queryDispatcher   = queryDispatcher;
     _azureServices     = azureServices;
     _helperService     = helperService;
 }
示例#3
0
 public async Task HandleAsync(ManagementModel message)
 {
     _azureServices = new AzureServices(message);
     await _azureServices.CoursesInsertOrMergeAsync();
 }
示例#4
0
 public AddTweetCommandHandler(IBaseRepository <Tweet> tweetRepository,
                               IAzureServices azureService)
 {
     _tweetRepository = tweetRepository;
     _azureService    = azureService;
 }
 public AzureLanguageController(IAzureServices azureServies)
 {
     _azureServices = azureServies;
 }
示例#6
0
 public HelperServices(IAzureServices azureService)
 {
     _azureService = azureService;
 }
示例#7
0
 public AzureFileProcessor(IAzureServices azureServices)
 {
     _azureServices = azureServices ?? throw new ArgumentNullException(nameof(azureServices));
 }