示例#1
0
 /// <summary>
 /// Update Employment Allowance Settings
 /// </summary>
 /// <remarks>
 /// Update employment allowance settings for the business.
 /// A new effective date can be set each tax year, otherwise the effective date reverts to the start of the tax year.
 /// State aid sectors:
 /// - Agriculture
 /// - FisheriesAndAquaculture
 /// - RoadTransport
 /// - Industrial
 /// </remarks>
 public Task <UkEmploymentAllowanceModel> UpdateEmploymentAllowanceSettingsAsync(int businessId, UkEmploymentAllowanceModel model, CancellationToken cancellationToken = default)
 {
     return(ApiRequestAsync <UkEmploymentAllowanceModel, UkEmploymentAllowanceModel>($"/business/{businessId}/hmrcsettings/employmentallowance", model, Method.PUT, cancellationToken));
 }
示例#2
0
 /// <summary>
 /// Update Employment Allowance Settings
 /// </summary>
 /// <remarks>
 /// Update employment allowance settings for the business.
 /// A new effective date can be set each tax year, otherwise the effective date reverts to the start of the tax year.
 /// State aid sectors:
 /// - Agriculture
 /// - FisheriesAndAquaculture
 /// - RoadTransport
 /// - Industrial
 /// </remarks>
 public UkEmploymentAllowanceModel UpdateEmploymentAllowanceSettings(int businessId, UkEmploymentAllowanceModel model)
 {
     return(ApiRequest <UkEmploymentAllowanceModel, UkEmploymentAllowanceModel>($"/business/{businessId}/hmrcsettings/employmentallowance", model, Method.PUT));
 }