Example #1
0
 /// <summary>
 /// Update Employee Super Adjustment
 /// </summary>
 /// <remarks>
 /// Updates the employee's recurring super adjustment with the specified ID.
 /// </remarks>
 public Task <EmployeeRecurringSuperAdjustmentModel> UpdateEmployeeSuperAdjustmentAsync(int businessId, int employeeId, int id, EmployeeRecurringSuperAdjustmentModel model, CancellationToken cancellationToken = default)
 {
     return(ApiRequestAsync <EmployeeRecurringSuperAdjustmentModel, EmployeeRecurringSuperAdjustmentModel>($"/business/{businessId}/employee/{employeeId}/superadjustment/{id}", model, Method.PUT, cancellationToken));
 }
Example #2
0
 /// <summary>
 /// Update Employee Super Adjustment
 /// </summary>
 /// <remarks>
 /// Updates the employee's recurring super adjustment with the specified ID.
 /// </remarks>
 public EmployeeRecurringSuperAdjustmentModel UpdateEmployeeSuperAdjustment(int businessId, int employeeId, int id, EmployeeRecurringSuperAdjustmentModel model)
 {
     return(ApiRequest <EmployeeRecurringSuperAdjustmentModel, EmployeeRecurringSuperAdjustmentModel>($"/business/{businessId}/employee/{employeeId}/superadjustment/{id}", model, Method.PUT));
 }