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

@@ -17,8 +17,14 @@ namespace skydiveLogs_api.DomainBusiness.Interfaces
IEnumerable<TunnelFlight> GetTunnelFlightByDates(string beginDate, string endDate);
IEnumerable<Statistic> GetTunnelFlightGroupByMonth(string beginDate, string endDate);
void AddNewFlight(int tunnelId, TunnelFlight newFlight);
void DeleteTunnelFlightById(int id);
void UpdateTunnelFlight(int id, TunnelFlight updatedTunnelFlight);
#endregion Public Methods
}
}