IDev_HandService.cs 687 B

1234567891011121314151617181920
  1. using LinqKit;
  2. using Ropin.Inspection.Model.Entities;
  3. using Ropin.Inspection.Model.ViewModel.DEV;
  4. using Ropin.Inspection.Service.Interface;
  5. using System;
  6. using System.Collections.Generic;
  7. using System.Linq;
  8. using System.Security.Claims;
  9. using System.Text;
  10. using System.Threading.Tasks;
  11. namespace Ropin.Inspection.Service.DEV.Interface
  12. {
  13. public interface IDev_HandService : IBaseService<dev_HandModel>, IBaseServiceById<dev_HandModel, Guid>
  14. {
  15. Task UpdateAsync(Guid code, dev_HandModel updateModel);
  16. Task<IEnumerable<devHandViewModel>> GetConditionAsync(TdevHandSearchModel searchModel);
  17. Task<devHandViewModel> GetConditionByIdAsync(Guid code);
  18. }
  19. }