コード例 #1
0
 /// <summary>
 /// Change the tax year
 /// </summary>
 /// <remarks>
 /// Changes the initial tax year for the current business. This is the tax year that
 /// </remarks>
 public Task ChangeTheTaxYearAsync(int businessId, ChangeTheTaxYearQueryModel request, CancellationToken cancellationToken = default)
 {
     return(ApiRequestAsync($"/business/{businessId}/initialfinancialyear?year={request.Year}", Method.POST, cancellationToken));
 }
コード例 #2
0
 /// <summary>
 /// Change the tax year
 /// </summary>
 /// <remarks>
 /// Changes the initial tax year for the current business. This is the tax year that
 /// </remarks>
 public void ChangeTheTaxYear(int businessId, ChangeTheTaxYearQueryModel request)
 {
     ApiRequest($"/business/{businessId}/initialfinancialyear?year={request.Year}", Method.POST);
 }