Пример #1
0
 public InterestController(IInterestListQuery interestListQuery, ISpecificInterestGraphQuery specificInterestGraphQuery, IInterestTasks interestTasks, IHttpContextProvider httpContextProvider)
 {
     _interestListQuery = interestListQuery;
     _specificInterestGraphQuery = specificInterestGraphQuery;
     _interestTasks = interestTasks;
     _httpContextProvider = httpContextProvider;
 }
Пример #2
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;
 }
Пример #3
0
 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;
 }
Пример #5
0
 public InterestListQuery(IInterestTasks interestTasks)
 {
     _interestTasks = interestTasks;
 }
Пример #6
0
 public InterestController(IInterestTasks interestTasks)
 {
     _interestTasks = interestTasks;
 }