using LinqKit;
using Ropin.Inspection.Model.Entities;
using Ropin.Inspection.Model.ViewModel.DEV;
using Ropin.Inspection.Service.Interface;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Security.Claims;
using System.Text;
using System.Threading.Tasks;

namespace Ropin.Inspection.Service.DEV.Interface
{
    public interface IDev_HandService : IBaseService<dev_HandModel>, IBaseServiceById<dev_HandModel, Guid>
    {
        Task UpdateAsync(Guid code, dev_HandModel updateModel);
        Task<IEnumerable<devHandViewModel>> GetConditionAsync(TdevHandSearchModel searchModel);
        Task<devHandViewModel> GetConditionByIdAsync(Guid code);
    }
}