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