示例#1
0
 /// <summary>
 /// Set processing options
 /// </summary>
 /// <remarks>
 /// Sets p11d and/or payrolling of benefits active or inactive and the business as having registered with HMRC from the given tax year
 /// </remarks>
 public Task SetProcessingOptionsAsync(int businessId, SaveBenefitCategoriesProcessingOptionsModel model, CancellationToken cancellationToken = default)
 {
     return(ApiRequestAsync($"/business/{businessId}/benefitcategory/processingoptions", model, Method.PUT, cancellationToken));
 }
示例#2
0
 /// <summary>
 /// Set processing options
 /// </summary>
 /// <remarks>
 /// Sets p11d and/or payrolling of benefits active or inactive and the business as having registered with HMRC from the given tax year
 /// </remarks>
 public void SetProcessingOptions(int businessId, SaveBenefitCategoriesProcessingOptionsModel model)
 {
     ApiRequest($"/business/{businessId}/benefitcategory/processingoptions", model, Method.PUT);
 }