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

@@ -6,5 +6,7 @@ namespace skydiveLogs_api.DomainService.Repositories
public interface IJumpRepository : IRepository<Jump>
{
IEnumerable<Jump> GetAll(User user);
bool DeleteById(int id);
}
}
}