35 lines
720 B
C#
35 lines
720 B
C#
using ProjectAirline.Entities;
|
|
using ProjectAirline.Entities.Enums;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ProjectAirline.Repositories.Implementations;
|
|
|
|
public class EmployeeRepository : IEmployeeRepository
|
|
{
|
|
public void CreateEmployee(Employee employee)
|
|
{
|
|
}
|
|
|
|
public void DeleteEmployee(int id)
|
|
{
|
|
}
|
|
|
|
public Employee ReadEmployeeById(int id)
|
|
{
|
|
return Employee.CreateEntity(0, string.Empty, string.Empty, string.Empty, EmployeePost.None);
|
|
}
|
|
|
|
public IEnumerable<Employee> ReadEmployees()
|
|
{
|
|
return [];
|
|
}
|
|
|
|
public void UpdateEmployee(Employee employee)
|
|
{
|
|
}
|
|
}
|