public TwitterSearchService(IHttpRequestResponse httpRequestResponse, IOAuthCreationService oAuthCreationService, IMapUser mapUser, IHttpServer httpServer, IMapSearch mapSearch)
 {
     _httpRequestResponse = httpRequestResponse;
     _oAuthCreationService = oAuthCreationService;
     _httpServer = httpServer;
     _mapSearch = mapSearch;
 }
 public TwitterSearchService(IHttpRequestResponse httpRequestResponse, IOAuthCreationService oAuthCreationService, IMapUser mapUser, IHttpServer httpServer, IMapSearch mapSearch)
 {
     _httpRequestResponse  = httpRequestResponse;
     _oAuthCreationService = oAuthCreationService;
     _httpServer           = httpServer;
     _mapSearch            = mapSearch;
 }
 public TwitterStatusService(IHttpRequestResponse httpRequestResponse, IOAuthCreationService oAuthCreationService,
                             IMapStatus mapStatus, IAnalyzeStatusesService analyzeStatusesService)
 {
     _httpRequestResponse    = httpRequestResponse;
     _oAuthCreationService   = oAuthCreationService;
     _mapStatus              = mapStatus;
     _analyzeStatusesService = analyzeStatusesService;
 }
 public TwitterStatusService(IHttpRequestResponse httpRequestResponse, IOAuthCreationService oAuthCreationService,
                             IMapStatus mapStatus, IAnalyzeStatusesService analyzeStatusesService)
 {
     _httpRequestResponse = httpRequestResponse;
     _oAuthCreationService = oAuthCreationService;
     _mapStatus = mapStatus;
     _analyzeStatusesService = analyzeStatusesService;
 }
        public TwitterService(
            IOAuthCreationService apiService,
            IJsonObjectDeserializer jsonDeserealizerWrapper)
        {
            Guard.WhenArgument(apiService, "OAuthCreationService").IsNull().Throw();
            Guard.WhenArgument(jsonDeserealizerWrapper, "JsonUserDeserializer").IsNull().Throw();

            this.apiService = apiService;
            this.jsonDeserializerWrapper = jsonDeserealizerWrapper;
        }
 public TwitterService(IHttpRequestResponse httpRequestResponse, IOAuthCreationService oAuthCreationService, IMapUser mapUser)
 {
     _httpRequestResponse = httpRequestResponse;
     _oAuthCreationService = oAuthCreationService;
     _mapUser = mapUser;
 }
 public TwitterService(IHttpRequestResponse httpRequestResponse, IOAuthCreationService oAuthCreationService, IMapUser mapUser)
 {
     _httpRequestResponse  = httpRequestResponse;
     _oAuthCreationService = oAuthCreationService;
     _mapUser = mapUser;
 }