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