Add the "delete" feature for the "Jump"

This commit is contained in:
Sébastien André
2021-04-20 10:38:37 +02:00
parent 49c2a87423
commit 64ace6a973
3 changed files with 9 additions and 2 deletions

View File

@@ -63,6 +63,11 @@ namespace skydiveLogs_api.Infrastructure
throw new System.NotImplementedException();
}
public bool DeleteById(int id)
{
return _col.Delete(new BsonValue(id));
}
#endregion Public Methods
#region Private Fields