Idev_HandRepository.cs 475 B

123456789101112131415
  1. using Ropin.Inspection.Model.Entities;
  2. using Ropin.Inspection.Model.ViewModel.DEV;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace Ropin.Inspection.Repository.DEV.Interface
  9. {
  10. public interface Idev_HandRepository : IRepositoryBase<TDEV_Hand>, IRepositoryBaseById<TDEV_Hand, Guid>
  11. {
  12. Task<IEnumerable<devHandViewModel>> GetConditionAsync(TdevHandSearchModel searchModel);
  13. }
  14. }