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

ICityRepository.cs 245B

12345678910
  1. using System.Collections.Generic;
  2. using UnivateProperties_API.Model.Region;
  3. namespace UnivateProperties_API.Repository.Region
  4. {
  5. public interface ICityRepository : IRepository<City>
  6. {
  7. List<City> GetBy(string province);
  8. }
  9. }