14 lines
367 B
C#
14 lines
367 B
C#
using Marco.Pms.Model.Employees;
|
|
using System.Linq.Expressions;
|
|
|
|
namespace Marco.Pms.DataAccess.Repository.IRepository
|
|
{
|
|
|
|
public interface IEmployeeRepository : IRepository<Employee>
|
|
{
|
|
void Update(Employee employee);
|
|
Task<List<Employee>> GetAsync(Expression<Func<Employee, bool>>? filter = null, string? includeProperties = null);
|
|
}
|
|
|
|
}
|