Add methods used for the graph of the tunnel flights

This commit is contained in:
Sébastien ANDRE
2023-08-16 17:38:50 +02:00
parent 25e403c21f
commit dc06f256b4
5 changed files with 83 additions and 29 deletions

View File

@@ -7,14 +7,14 @@ namespace skydiveLogs_api.DomainService.Repositories
{
#region Public Methods
bool DeleteById(int id);
IEnumerable<Jump> GetAll(User user);
IEnumerable<Jump> GetBetweenIndex(User user, int beginIndex, int endIndex);
int GetCount(User user);
bool DeleteById(int id);
#endregion Public Methods
}
}

View File

@@ -16,6 +16,8 @@ namespace skydiveLogs_api.DomainService.Repositories
int GetCount(User user);
bool DeleteById(int id);
#endregion Public Methods
}
}