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