public ServiceHandler(ISettings settings, ITwitterService twitterService, ITweetMatcher tweetMatcher, ISandboxService sandboxService) { this.settings = settings; this.twitterService = twitterService; this.tweetMatcher = tweetMatcher; this.sandboxService = sandboxService; }
public SandboxController(ISandboxService sandboxService) { this.sandboxService = sandboxService; }
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); }
public OrderTest() { _orderService = new OrderService(RestConfiguration); _sandboxService = new SandboxService(RestConfiguration); }
public OrderTest() { _orderService = new OrderService(RestConfiguration, new HttpClient()); _sandboxService = new SandboxService(RestConfiguration, new HttpClient()); }