26 lines
541 B
C#
26 lines
541 B
C#
|
using ProjectAirline.Entities;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace ProjectAirline.Repositories.Implementations;
|
|||
|
|
|||
|
public class EmployeeFlightRepository : IEmployeeFlightRepository
|
|||
|
{
|
|||
|
public void CreateEmployeeFlight(EmployeeFlight employeeFlight)
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
public EmployeeFlight ReadEmployeeFlightById(int id)
|
|||
|
{
|
|||
|
return null;
|
|||
|
}
|
|||
|
|
|||
|
public IEnumerable<EmployeeFlight> ReadEmployeeFlights()
|
|||
|
{
|
|||
|
return [];
|
|||
|
}
|
|||
|
}
|