ITdevDevOpeAccountRepository.cs 553 B

12345678910111213141516
  1. using Ropin.Inspection.Model;
  2. using Ropin.Inspection.Model.Entities;
  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
  9. {
  10. public interface ITdevDevOpeAccountRepository : IRepositoryBase<TDEV_DevOpeAccount>, IRepositoryBaseById<TDEV_DevOpeAccount, Guid>
  11. {
  12. Task<int> DeleteByDevIdAsync(string devId);
  13. Task<List<DevOpeAccountConfigSelect>> GetDevOpeAccountConfigSelectAsync(TdevDevOpeAccountSearchModel searchModel);
  14. }
  15. }