Пример #1
0
 private void CreateEndpoints()
 {
     authUsersEndpoint        = new AuthUsersEndpoint(restClient, apiKey);
     authUsersSecretsEndpoint = new AuthUsersSecretsEndpoint(restClient, apiKey);
     companiesEndpoint        = new CompaniesEndpoint(restClient, apiKey);
     hotpsEndpoint            = new HotpsEndpoint(restClient, apiKey);
     totpsEndpoint            = new TotpsEndpoint(restClient, apiKey);
     tokensEndpoint           = new TokensEndpoint(restClient);
 }
Пример #2
0
 public void Setup()
 {
     _dataContextMock     = new Mock <IDataContext>();
     _companiesSorterMock = new Mock <ICompaniesSorter>();
     _cut = new CompaniesEndpoint(_dataContextMock.Object, _companiesSorterMock.Object);
 }