示例#1
0
 public EmojisService(
     IRestClientService restClientService,
     IFileRestClientService fileRestClientService)
 {
     _restClientService     = restClientService;
     _fileRestClientService = fileRestClientService;
 }
示例#2
0
 public AuthenticationService(
     IAuthHelper authHelper,
     IRestClientService restClientService)
 {
     _authHelper        = authHelper;
     _restClientService = restClientService;
 }
示例#3
0
 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;
 }
示例#6
0
 public ChannelsService(IRestClientService restClientService)
 {
     _restClientService = restClientService;
 }
示例#7
0
 public HomeController(ISensorService sensorService, IRestClientService test)
 {
     this.sensorService = sensorService;
     this.test          = test;
 }
示例#8
0
 public UsersService(IRestClientService restClientService)
 {
     _restClientService = restClientService;
 }
示例#9
0
 public AppService(IRestClientService restClientService)
 {
     this.restClientService = restClientService;
 }
示例#10
0
 public AssetsService(IRestClientService restClientService)
 {
     _restClientService = restClientService;
 }
示例#11
0
 public NHLApiClient()
 {
     _restClient         = ClassLocator.Locator.Instance.Fetch <IRestClientService>();
     _restClient.BaseUrl = Constants.NHLApiEndpoint;
 }
示例#12
0
 public FileSystemClientService(IRestClientService restClientService, IRestServiceConfiguration restServiceConfiguration)
 {
     this.restClientService        = restClientService;
     this.restServiceConfiguration = restServiceConfiguration;
 }
示例#13
0
 public ClipsController(IRestClientService restClientService)
 {
     _restClientService = restClientService;
 }
示例#14
0
 public RoomService(IRestClientService restClientService)
 {
     _restClientService = restClientService;
 }
示例#15
0
 public GroupsService(IRestClientService restClientService)
 {
     _restClientService = restClientService;
 }
 public AutoTranslateService(IRestClientService restClientService)
 {
     _restClientService = restClientService;
 }
示例#17
0
 public CommandsService(IRestClientService restClientService)
 {
     _restClientService = restClientService;
 }