Example #1
0
 public AddTvShowCommandHandler(IRequestContext context, ISonarrClient client, IAccountRepository accountRepository,
                                IAddedContentRepository addedContentRepository)
 {
     _context                = context;
     _client                 = client;
     _accountRepository      = accountRepository;
     _addedContentRepository = addedContentRepository;
 }
Example #2
0
 public GetAddedContentQueryHandler(IAddedContentRepository repository)
 {
     _repository = repository;
 }