using System.Collections.Generic; using YourNamespace.Entities; namespace YourNamespace.Repositories { public interface IPlaneRepository { IEnumerable ReadPlanes(); Plane ReadPlaneById(int id); void CreatePlane(Plane plane); void UpdatePlane(Plane plane); void DeletePlane(int id); } }