using System.Collections.Generic; using YourNamespace.Entities; namespace YourNamespace.Repositories { public interface IEmployeeRepository { IEnumerable ReadEmployees(); Employee ReadEmployeeById(int id); void CreateEmployee(Employee employee); void UpdateEmployee(Employee employee); void DeleteEmployee(int id); } }