public ServiceHandler(ISettings settings, ITwitterService twitterService, ITweetMatcher tweetMatcher, ISandboxService sandboxService)
 {
     this.settings = settings;
     this.twitterService = twitterService;
     this.tweetMatcher = tweetMatcher;
     this.sandboxService = sandboxService;
 }
Example #2
0
 public ServiceHandler(ISettings settings, ITwitterService twitterService, ITweetMatcher tweetMatcher, ISandboxService sandboxService)
 {
     this.settings       = settings;
     this.twitterService = twitterService;
     this.tweetMatcher   = tweetMatcher;
     this.sandboxService = sandboxService;
 }
Example #3
0
 public SandboxController(ISandboxService sandboxService)
 {
     this.sandboxService = sandboxService;
 }
Example #4
0
 public SandboxTest()
 {
     _sandboxService = new SandboxService(RestConfiguration, new HttpClient());
 }
 public SandboxServicesAndMocks(ISandboxService sandboxService, Mock <IStudyEfModelService> studyModelServiceMock, Mock <ISandboxModelService> sandboxModelServiceMock)
 {
     SandboxService          = sandboxService;
     StudyModelServiceMock   = studyModelServiceMock;
     SandboxModelServiceMock = sandboxModelServiceMock;
 }
 public SandboxTest()
 {
     _sandboxService = new SandboxService(RestConfiguration);
 }
Example #7
0
 public OrderTest()
 {
     _orderService   = new OrderService(RestConfiguration);
     _sandboxService = new SandboxService(RestConfiguration);
 }
 public OrderTest()
 {
     _orderService   = new OrderService(RestConfiguration, new HttpClient());
     _sandboxService = new SandboxService(RestConfiguration, new HttpClient());
 }