public FcsFeedService(ISyndicationFeedService syndicationFeedService,
                       IFcsSyndicationFeedParserService fcsSyndicationFeedParserService,
                       IContractMappingService contractMappingService)
 {
     _syndicationFeedService          = syndicationFeedService;
     _fcsSyndicationFeedParserService = fcsSyndicationFeedParserService;
     _contractMappingService          = contractMappingService;
 }
 private FcsFeedService NewService(ISyndicationFeedService syndicationFeedService = null, IFcsSyndicationFeedParserService fcsSyndicationFeedParserService = null, IContractMappingService contractMappingService = null)
 {
     return(new FcsFeedService(syndicationFeedService, fcsSyndicationFeedParserService, contractMappingService));
 }