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