first commit
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
using BethanysPieShopHRM.Shared.Domain;
|
||||
|
||||
namespace BethanysPieShopHRM.Api.Models
|
||||
{
|
||||
public interface IEmployeeRepository
|
||||
{
|
||||
IEnumerable<Employee> GetAllEmployees();
|
||||
Employee GetEmployeeById(int employeeId);
|
||||
Employee AddEmployee(Employee employee);
|
||||
Employee UpdateEmployee(Employee employee);
|
||||
void DeleteEmployee(int employeeId);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user