Exemple #1
0
 public OpmlImporterService(
     IRssChannelsSubscriptionsRepository rssSubscriptionsRepository,
     ISessionProvider sessionProvider,
     IRssChannelsRepository rssChannelsRepository,
     IOpmlReader opmlHandler)
 {
     this.rssSubscriptionsRepository = rssSubscriptionsRepository;
     this.sessionProvider            = sessionProvider;
     this.rssChannelsRepository      = rssChannelsRepository;
     this.opmlHandler = opmlHandler;
 }
 public OpmlImporterService(
     IRssChannelsSubscriptionsRepository rssSubscriptionsRepository,
     IRssChannelsRepository rssChannelsRepository,
     IOpmlReader opmlHandler,
     IUserAuthentication authentication)
 {
     this.rssSubscriptionsRepository = rssSubscriptionsRepository;
     this.rssChannelsRepository = rssChannelsRepository;
     this.opmlHandler = opmlHandler;
     this.authentication = authentication;
 }