/// <inheritdoc/>
 public Task <ApiResult <CashVoucherGetModel> > UpdateAsync(CashVoucherPatchModel model, CancellationToken cancellationToken = default)
 {
     return(PatchAsync <CashVoucherPatchModel, CashVoucherGetModel>(model, cancellationToken));
 }
示例#2
0
 /// <inheritdoc/>
 public ApiResult <CashVoucherGetModel> Update(CashVoucherPatchModel model)
 {
     return(Patch <CashVoucherPatchModel, CashVoucherGetModel>(model));
 }