ITbdmCodeRepository.cs 474 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 ITbdmCodeRepository : IRepositoryBase<TBDM_CodeMain>, IRepositoryBaseById<TBDM_CodeMain, string>
  11. {
  12. Task<List<TbdmCodeViewModel>> GetProvListTreeAsync();
  13. Task<bool> DeleteByCodeAsync(string code);
  14. }
  15. }