Beispiel #1
0
 public ArticleController(IArticleHandler handler, IArticleRepository repository) : base(handler)
 {
     this._repository = repository;
 }
Beispiel #2
0
 public BanlistProcessor(IBanlistUrlDataSource banlistUrlDataSource, IArticleHandler articleHandler)
 {
     _banlistUrlDataSource = banlistUrlDataSource;
     _articleHandler       = articleHandler;
     _logger = LogManager.GetCurrentClassLogger();
 }
Beispiel #3
0
 public ArticleProcessor(IArticleHandler articleHandler)
 {
     _articleHandler = articleHandler;
 }