24 lines
757 B
C#
24 lines
757 B
C#
using ProjectAirline.Entities;
|
|
using System.Collections.Generic;
|
|
|
|
namespace ProjectAirline.Repositories.Implementations;
|
|
|
|
public class EmployeeFlightRepository : IEmployeeFlightRepository
|
|
{
|
|
public void CreateEmployeeFlight(EmployeeFlight employeeFlight)
|
|
{
|
|
// Реализация создания связи сотрудник-рейс
|
|
}
|
|
|
|
public EmployeeFlight ReadEmployeeFlightById(int id)
|
|
{
|
|
// Реализация чтения связи сотрудник-рейс по ID
|
|
return null;
|
|
}
|
|
|
|
public IEnumerable<EmployeeFlight> ReadEmployeeFlights()
|
|
{
|
|
// Реализация чтения всех связей сотрудник-рейс
|
|
return new List<EmployeeFlight>();
|
|
}
|
|
} |