public InterestController(IInterestListQuery interestListQuery, ISpecificInterestGraphQuery specificInterestGraphQuery, IInterestTasks interestTasks, IHttpContextProvider httpContextProvider) { _interestListQuery = interestListQuery; _specificInterestGraphQuery = specificInterestGraphQuery; _interestTasks = interestTasks; _httpContextProvider = httpContextProvider; }
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; }
public SearchController(IUsersByInterestsQuery usersByInterestsQuery, IInterestTasks interestTasks, IInterestFeedQuery interestFeedQuery, IPrincipal principal, IUserInterestTasks userInterestTasks) { _usersByInterestsQuery = usersByInterestsQuery; _interestTasks = interestTasks; _interestFeedQuery = interestFeedQuery; _principal = principal; _userInterestTasks = userInterestTasks; }
public SpecificInterestGraphQuery(IInterestTasks interestTasks) { _interestTasks = interestTasks; }
public InterestListQuery(IInterestTasks interestTasks) { _interestTasks = interestTasks; }
public InterestController(IInterestTasks interestTasks) { _interestTasks = interestTasks; }