Ejemplo n.º 1
0
 public UserTasks(
     IInterestTasks interestTasks,
     IImageProcessor imageProcessor,
     IFileUploadService fileUploadService,
     IWebContentService webContentService,
     IFeedFinder feedFinder,
     IUserAuthentication userAuthentication,
     IConversationRepository conversationRepository,
     IEmailService emailService,
     ILocationService locationService,
     IUserRepository userRepository,
     IPageParsingService pageParsingService, IUserInterestTasks userInterestTasks)
 {
     _interestTasks = interestTasks;
     _imageProcessor = imageProcessor;
     _fileUploadService = fileUploadService;
     _webContentService = webContentService;
     _feedFinder = feedFinder;
     _userAuthentication = userAuthentication;
     _conversationRepository = conversationRepository;
     _emailService = emailService;
     _locationService = locationService;
     _userRepository = userRepository;
     _pageParsingService = pageParsingService;
     _userInterestTasks = userInterestTasks;
 }
Ejemplo n.º 2
0
 public TestController(ILogger logger, IEmailService emailService, IViewRenderer viewRenderer, IPageParsingService pageParsingService, IWebContentService webContentService)
 {
     _logger = logger;
     _emailService = emailService;
     _viewRenderer = viewRenderer;
     _pageParsingService = pageParsingService;
     _webContentService = webContentService;
 }
 public WikipediaParsingService(
     IDownloadingService downloadingService,
     IPageParsingService pageParsingService,
     IDatasourceManagementService datasourceManagementService)
 {
     this.downloadingService          = downloadingService;
     this.pageParsingService          = pageParsingService;
     this.datasourceManagementService = datasourceManagementService;
 }