18 lines
388 B
C#
18 lines
388 B
C#
using skydiveLogs_api.Domain;
|
|
using System.Collections.Generic;
|
|
|
|
namespace skydiveLogs_api.DomainBusiness.Interfaces
|
|
{
|
|
public interface ITunnelService
|
|
{
|
|
#region Public Methods
|
|
|
|
IEnumerable<Tunnel> GetAllTunnels();
|
|
|
|
Tunnel GetTunnelById(int id);
|
|
|
|
void AddNewFlight(int tunnelId, TunnelFlight newFlight);
|
|
|
|
#endregion Public Methods
|
|
}
|
|
} |