using System.Collections.Generic; using YourNamespace.Entities; namespace YourNamespace.Repositories { public interface IAirportRepository { IEnumerable ReadAirports(); Airport ReadAirportById(int id); void CreateAirport(Airport airport); void UpdateAirport(Airport airport); void DeleteAirport(int id); } }