Ejemplo n.º 1
0
 public async Task RemoveAsync(string id)
 {
     await EntityCollection.DeleteOneAsync(e => e.Id == id);
 }
Ejemplo n.º 2
0
 public async Task RemoveAsync(T entity)
 {
     await EntityCollection.DeleteOneAsync(e => e.Id == entity.Id);
 }