Add function to get the tunnel flights between dates

This commit is contained in:
Sébastien ANDRE
2023-06-22 20:24:28 +02:00
parent ef15986db3
commit 894f283654
5 changed files with 35 additions and 0 deletions

View File

@@ -15,6 +15,8 @@ namespace skydiveLogs_api.DomainBusiness.Interfaces
IEnumerable<TunnelFlight> GetTunnelFlightsByIndexes(int beginIndex, int endIndex);
IEnumerable<TunnelFlight> GetTunnelFlightByDates(string beginDate, string endDate);
void AddNewFlight(int tunnelId, TunnelFlight newFlight);
#endregion Public Methods