Example #1
0
 public CommandHandler(ITableRepository <PodcastSubscription> repository,
                       IFeedContentStorageApi feedContentClient, IEmailSender emailSender, IConfiguration configuration)
 {
     _repository        = repository;
     _feedContentClient = feedContentClient;
     _emailSender       = emailSender;
     _configuration     = configuration;
 }
 public CommandHandler(BlobClient blobClient, IFeedContentStorageApi feedContentStorage)
 {
     _blobClient         = blobClient;
     _feedContentStorage = feedContentStorage;
 }
 public CommandHandler(ITableRepository <PodcastSubscription> repository,
                       IFeedContentStorageApi feedContentClient)
 {
     _repository        = repository;
     _feedContentClient = feedContentClient;
 }