public ManagingSourceFeedController(IFeedCollectionRepository feedsRepository, IMapper mapper,
                                     ILogger <ManagingSourceFeedController> logger, IConfiguration configuration)
 {
     this.feedsRepository = feedsRepository;
     this.mapper          = mapper;
     this.logger          = logger;
     this.configuration   = configuration;
 }
示例#2
0
 public DiscoversController(IFeedCollectionRepository feedsRepository, IMapper mapper, ILogger <DiscoversController> logger,
                            IAuthRepository authRepository, IConfiguration configuration)
 {
     this.feedsRepository = feedsRepository;
     this.mapper          = mapper;
     this.logger          = logger;
     this.configuration   = configuration;
     this.authRepository  = authRepository;
 }