11 lines
323 B
C#
11 lines
323 B
C#
|
using ProjectAirline.Entities;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace ProjectAirline.Repositories;
|
|||
|
|
|||
|
public interface IEmployeeFlightRepository
|
|||
|
{
|
|||
|
IEnumerable<EmployeeFlight> ReadEmployeeFlights();
|
|||
|
EmployeeFlight ReadEmployeeFlightById(int id);
|
|||
|
void CreateEmployeeFlight(EmployeeFlight employeeFlight);
|
|||
|
}
|