Différencier Tunnel et TunnelFlight
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
using skydiveLogs_api.Domain;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace skydiveLogs_api.DomainService.Repositories
|
||||
{
|
||||
public interface ITunnelFlightRepository : IRepository<TunnelFlight>
|
||||
{
|
||||
#region Public Methods
|
||||
|
||||
IEnumerable<TunnelFlight> GetAll(User user);
|
||||
|
||||
IEnumerable<TunnelFlight> GetBetweenIndex(User user, int beginIndex, int endIndex);
|
||||
|
||||
int GetCount(User user);
|
||||
|
||||
#endregion Public Methods
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user