18 lines
370 B
C#
18 lines
370 B
C#
using ProjectOptika.Scripts.Entities;
|
|
|
|
namespace ProjectOptika.Scripts.Repositories
|
|
{
|
|
public interface IEmployeeRepository
|
|
{
|
|
IEnumerable<Employee> GetEmployees();
|
|
|
|
Employee GetEmployeerByID(int id);
|
|
|
|
void CreateEmployee(Employee employee);
|
|
|
|
void UpdateEmployee(Employee employee);
|
|
|
|
void DeleteEmployee(int id);
|
|
}
|
|
}
|