Différencier Tunnel et TunnelFlight
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
using skydiveLogs_api.Domain;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace skydiveLogs_api.DomainBusiness.Interfaces
|
||||
{
|
||||
public interface ITunnelFlightService
|
||||
{
|
||||
#region Public Methods
|
||||
|
||||
IEnumerable<TunnelFlight> GetAllTunnelFlights();
|
||||
|
||||
TunnelFlight GetTunnelFlightById(int id);
|
||||
|
||||
int GetTunnelFlightCount();
|
||||
|
||||
IEnumerable<TunnelFlight> GetTunnelFlightsByIndexes(int beginIndex, int endIndex);
|
||||
|
||||
void AddNewFlight(int tunnelId, TunnelFlight newFlight);
|
||||
|
||||
#endregion Public Methods
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user