Exemple #1
0
 public HomeController(
     ITweetsLogic tweetsLogic,
     ISearchLogic searchLogic,
     ITwitterSearchRepository twitterSearchRepository,
     ITwitterAppRepository twitterAppRepository,
     ITweetsRepository tweetsRepository)
 {
     _tweetsLogic = tweetsLogic;
     _searchLogic = searchLogic;
     _twitterSearchRepository = twitterSearchRepository;
     _twitterAppRepository = twitterAppRepository;
     _tweetsRepository = tweetsRepository;
 }
Exemple #2
0
 public HomeController(
     ITweetsLogic tweetsLogic,
     ISearchLogic searchLogic,
     ITwitterSearchRepository twitterSearchRepository,
     ITwitterAppRepository twitterAppRepository,
     ITweetsRepository tweetsRepository)
 {
     _tweetsLogic             = tweetsLogic;
     _searchLogic             = searchLogic;
     _twitterSearchRepository = twitterSearchRepository;
     _twitterAppRepository    = twitterAppRepository;
     _tweetsRepository        = tweetsRepository;
 }
Exemple #3
0
 public SearchJobLogic(
     ITwitterAppLogic twitterAppLogic,
     ISearchLogic searchLogic,
     ITweetsLogic tweetsLogic,
     ISearchHistoryLogRepository searchHistoryLogicRepository,
     ITwitterSearchRepository twitterSearchRepository
     )
 {
     _twitterAppLogic = twitterAppLogic;
     _searchLogic     = searchLogic;
     _tweetsLogic     = tweetsLogic;
     _searchHistoryLogicRepository = searchHistoryLogicRepository;
     _twitterSearchRepository      = twitterSearchRepository;
 }
Exemple #4
0
 public SearchJobLogic(
     ITwitterAppLogic twitterAppLogic,
     ISearchLogic searchLogic,
     ITweetsLogic tweetsLogic,
     ISearchHistoryLogRepository searchHistoryLogicRepository,
     ITwitterSearchRepository twitterSearchRepository
     )
 {
     _twitterAppLogic = twitterAppLogic;
     _searchLogic = searchLogic;
     _tweetsLogic = tweetsLogic;
     _searchHistoryLogicRepository = searchHistoryLogicRepository;
     _twitterSearchRepository = twitterSearchRepository;
 }
Exemple #5
0
 public DataCompletenessChartContent(SearchLogic searchLogic)
 {
     SearchLogic = searchLogic;
 }
Exemple #6
0
 public ReportsController(ITweetsLogic tweetsLogic, ISearchLogic searchLogic)
 {
     _tweetsLogic = tweetsLogic;
     _searchLogic = searchLogic;
 }
Exemple #7
0
 public ReportsController(ITweetsLogic tweetsLogic, ISearchLogic searchLogic)
 {
     _tweetsLogic = tweetsLogic;
     _searchLogic = searchLogic;
 }
Exemple #8
0
 public SearchController(ISearchLogic searchLogic)
 {
     _searchLogic = searchLogic;
 }
 public ManipulationLogic(ITransactionalPreprocessingData _prepocessingData, ISearchLogic theSearchLogic, IStatisticsLogic theStatisticsLogic)
 {
     preprocessingData = _prepocessingData;
     searchLogic       = theSearchLogic;
     statisticsLogic   = theStatisticsLogic;
 }
 public StatisticsLogic(ITransactionalPreprocessingData thePreprocessingData, ISearchLogic theSearchLogic)
 {
     preprocessingData = thePreprocessingData;
     searchLogic       = theSearchLogic;
 }
 public DataCompletenessChartContent(DataCompletenessChartContent content, Cloner cloner)
   : base(content, cloner) {
   SearchLogic = content.SearchLogic;
 }
 public ManipulationContent(IManipulationLogic theManipulationLogic, ISearchLogic theSearchLogic, IFilterLogic theFilterLogic) {
   manipulationLogic = theManipulationLogic;
   searchLogic = theSearchLogic;
   filterLogic = theFilterLogic;
 }
Exemple #13
0
 public SearchController(ISearchLogic searchLogic)
 {
     _searchLogic = searchLogic;
 }
Exemple #14
0
 public DataCompletenessChartContent(DataCompletenessChartContent content, Cloner cloner)
     : base(content, cloner)
 {
     SearchLogic = content.SearchLogic;
 }
Exemple #15
0
 public ManipulationContent(IManipulationLogic theManipulationLogic, ISearchLogic theSearchLogic, IFilterLogic theFilterLogic)
 {
     manipulationLogic = theManipulationLogic;
     searchLogic       = theSearchLogic;
     filterLogic       = theFilterLogic;
 }
 /// <summary>
 /// constructor
 /// </summary>
 /// <param name="logic">business logic</param>
 public SearchController(ISearchLogic logic)
 {
     _logic = logic;
 }
 public DataCompletenessChartContent(SearchLogic searchLogic) {
   SearchLogic = searchLogic;
 }