using ProjectAirline.Entities; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ProjectAirline.Repositories; public interface IFlightRepository { Flight ReadFlightById(int id); IEnumerable ReadFlights(DateTime? dateFrom = null, DateTime? dateTo = null, int? flightId = null); void CreateFlight(Flight flight); //IEnumerable ReadFlights(); //void CreateFlight(Flight flight); void UpdateFlight(Flight flight); void DeleteFlight(int id); }