14 lines
384 B
C#
Raw Normal View History

2024-11-27 00:03:35 +04:00
using System.Collections.Generic;
using YourNamespace.Entities;
namespace YourNamespace.Repositories
{
public interface IEmployeeRepository
{
IEnumerable<Employee> ReadEmployees();
Employee ReadEmployeeById(int id);
void CreateEmployee(Employee employee);
void UpdateEmployee(Employee employee);
void DeleteEmployee(int id);
}
}