public EmojisService( IRestClientService restClientService, IFileRestClientService fileRestClientService) { _restClientService = restClientService; _fileRestClientService = fileRestClientService; }
public AuthenticationService( IAuthHelper authHelper, IRestClientService restClientService) { _authHelper = authHelper; _restClientService = restClientService; }
public ContactDataEngine(IRestClientService restClientService, ILogger <ContactDataEngine> logger, IContactRepository contactRepository) { this.restClientService = restClientService; this.logger = logger; this.contactRepository = contactRepository; }
public EngagementDataEngine(IRestClientService restClientService, ILogger <EngagementDataEngine> logger, IEngagementRepository engagementRepository) { this.restClientService = restClientService; this.logger = logger; this.engagementRepository = engagementRepository; }
public RelationshipDataEngine(IRestClientService restClientService, ILogger <RelationshipDataEngine> logger, IContactRepository contactRepository, IRelationshipRepository relationshipRepository) { this.restClientService = restClientService; this.logger = logger; this.contactRepository = contactRepository; this.relationshipRepository = relationshipRepository; }
public ChannelsService(IRestClientService restClientService) { _restClientService = restClientService; }
public HomeController(ISensorService sensorService, IRestClientService test) { this.sensorService = sensorService; this.test = test; }
public UsersService(IRestClientService restClientService) { _restClientService = restClientService; }
public AppService(IRestClientService restClientService) { this.restClientService = restClientService; }
public AssetsService(IRestClientService restClientService) { _restClientService = restClientService; }
public NHLApiClient() { _restClient = ClassLocator.Locator.Instance.Fetch <IRestClientService>(); _restClient.BaseUrl = Constants.NHLApiEndpoint; }
public FileSystemClientService(IRestClientService restClientService, IRestServiceConfiguration restServiceConfiguration) { this.restClientService = restClientService; this.restServiceConfiguration = restServiceConfiguration; }
public ClipsController(IRestClientService restClientService) { _restClientService = restClientService; }
public RoomService(IRestClientService restClientService) { _restClientService = restClientService; }
public GroupsService(IRestClientService restClientService) { _restClientService = restClientService; }
public AutoTranslateService(IRestClientService restClientService) { _restClientService = restClientService; }
public CommandsService(IRestClientService restClientService) { _restClientService = restClientService; }