ITpntStoreRepository.cs 463 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 ITpntStoreRepository : IRepositoryBase<TPNT_Store>, IRepositoryBaseById<TPNT_Store, Guid>
  11. {
  12. IList<TPNT_Type> GetAllPntType();
  13. Task<TpntStoreViewModel> GetStoreByCodeAsync(string code);
  14. }
  15. }