API
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

ICityRepository.cs 295B

1234567891011
  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. List<City> GetByProperty(int propertyId);
  9. }
  10. }