public void GetCompanySettingsTest()
        {
            var response = CompanySettingsService.GetCompanySettingsAsync(new FortnoxApiRequest(
                                                                              this.connectionSettings.AccessToken, this.connectionSettings.ClientSecret)
            {
            }).GetAwaiter().GetResult();

            Assert.IsNotNull(response);
        }
Exemple #2
0
 public CompanySettingsController(CompanySettingsService companySettingsService)
 {
     _companySettingsService = companySettingsService;
 }