Esempio n. 1
0
 /// <inheritdoc />
 public abstract void Delete(DeleteProps deleteProps, long batchId = -1);
Esempio n. 2
0
 /// <inheritdoc />
 public async Task DeleteAsync(DeleteProps deleteProps, long batchId = -1)
 {
     await Task.Run(() => { Delete(deleteProps, batchId); });
 }