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, IBaseServiceById { Task UpdateAsync(Guid code, dev_HandModel updateModel); Task> GetConditionAsync(TdevHandSearchModel searchModel); Task GetConditionByIdAsync(Guid code); } }