1
0

IEmployeeRepository.cs 167 B

12345678
  1. using Admin.Core.Model.Personnel;
  2. namespace Admin.Core.Repository.Personnel
  3. {
  4. public interface IEmployeeRepository : IRepositoryBase<EmployeeEntity>
  5. {
  6. }
  7. }