API
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

ISuburbRepository.cs 408B

12345678910111213
  1. using System.Collections.Generic;
  2. using UnivateProperties_API.Containers.Regions;
  3. using UnivateProperties_API.Model.Region;
  4. namespace UnivateProperties_API.Repository.Region
  5. {
  6. public interface ISuburbRepository : IRepository<Suburb>
  7. {
  8. List<Suburb> GetBy(string province, string city);
  9. List<SuburbSearch> GetSearchList();
  10. List<Suburb> GetByProperty(int propertyId);
  11. }
  12. }