Exemple #1
0
 /// <summary>
 /// Set Employee Notes
 /// </summary>
 /// <remarks>
 /// Sets the notes for the specified employee.
 /// </remarks>
 public Task SetEmployeeNotesAsync(int businessId, int employeeId, CreateEmployeeNoteModel model, CancellationToken cancellationToken = default)
 {
     return(ApiRequestAsync($"/business/{businessId}/employee/{employeeId}/notes", model, Method.POST, cancellationToken));
 }
Exemple #2
0
 /// <summary>
 /// Set Employee Notes
 /// </summary>
 /// <remarks>
 /// Sets the notes for the specified employee.
 /// </remarks>
 public void SetEmployeeNotes(int businessId, int employeeId, CreateEmployeeNoteModel model)
 {
     ApiRequest($"/business/{businessId}/employee/{employeeId}/notes", model, Method.POST);
 }