using Ropin.Inspection.Model.Entities;
using Ropin.Inspection.Model.ViewModel.DEV;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Ropin.Inspection.Repository.DEV.Interface
{
    public interface Idev_HandRepository : IRepositoryBase<TDEV_Hand>, IRepositoryBaseById<TDEV_Hand, Guid>
    {
        Task<IEnumerable<devHandViewModel>> GetConditionAsync(TdevHandSearchModel searchModel);
    }
}