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