Beispiel #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;
 }
Beispiel #2
0
 public FeedListQuery(IUserTasks userTasks, IPostTasks postTasks, IMvcUrlHelperProvider mvcUrlHelperProvider, IUserSearchPipeline userSearchPipeline, IUserInterestTasks userInterestTasks)
 {
     _userTasks = userTasks;
     _postTasks = postTasks;
     _mvcUrlHelperProvider = mvcUrlHelperProvider;
     _userSearchPipeline = userSearchPipeline;
     _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 PostOverviewQuery(IPostTasks postTasks, IUserInterestTasks userInterestTasks)
 {
     _postTasks = postTasks;
     _userInterestTasks = userInterestTasks;
 }