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 { IEnumerable ReadFlights(DateTime? dateFrom = null, DateTime? dateTo = null, int? flightId = null); void CreateFlight(Flight flight); //IEnumerable ReadFlights(); //Flight ReadFlightById(int id); //void CreateFlight(Flight flight); //void UpdateFlight(Flight flight); //void DeleteFlight(int id); }