예제 #1
0
 /// <summary>
 /// Update Employee Tax Relief Adjustment
 /// </summary>
 /// <remarks>
 /// Updates the employee's recurring tax relief adjustment with the specified ID.
 /// </remarks>
 public Task <EmployeeRecurringTaxReliefAdjustmentModel> UpdateEmployeeTaxReliefAdjustmentAsync(int businessId, int employeeId, int id, EmployeeRecurringTaxReliefAdjustmentModel model, CancellationToken cancellationToken = default)
 {
     return(ApiRequestAsync <EmployeeRecurringTaxReliefAdjustmentModel, EmployeeRecurringTaxReliefAdjustmentModel>($"/business/{businessId}/employee/{employeeId}/taxreliefadjustment/{id}", model, Method.PUT, cancellationToken));
 }
예제 #2
0
 /// <summary>
 /// Update Employee Tax Relief Adjustment
 /// </summary>
 /// <remarks>
 /// Updates the employee's recurring tax relief adjustment with the specified ID.
 /// </remarks>
 public EmployeeRecurringTaxReliefAdjustmentModel UpdateEmployeeTaxReliefAdjustment(int businessId, int employeeId, int id, EmployeeRecurringTaxReliefAdjustmentModel model)
 {
     return(ApiRequest <EmployeeRecurringTaxReliefAdjustmentModel, EmployeeRecurringTaxReliefAdjustmentModel>($"/business/{businessId}/employee/{employeeId}/taxreliefadjustment/{id}", model, Method.PUT));
 }