Beispiel #1
0
 /// <summary>
 /// Set Opening Balances
 /// </summary>
 /// <remarks>
 /// Sets the opening balances for this employee.
 /// </remarks>
 public Task SetOpeningBalancesAsync(int businessId, int employeeId, MyOpeningBalancesModel model, CancellationToken cancellationToken = default)
 {
     return(ApiRequestAsync($"/business/{businessId}/employee/{employeeId}/openingbalances", model, Method.POST, cancellationToken));
 }
Beispiel #2
0
 /// <summary>
 /// Set Opening Balances
 /// </summary>
 /// <remarks>
 /// Sets the opening balances for this employee.
 /// </remarks>
 public void SetOpeningBalances(int businessId, int employeeId, MyOpeningBalancesModel model)
 {
     ApiRequest($"/business/{businessId}/employee/{employeeId}/openingbalances", model, Method.POST);
 }