using System; using System.Collections.Generic; using System.Threading.Tasks; using Volo.Abp.Domain.Repositories; namespace Volo.Abp.TestApp.Domain { public interface ICityRepository : IBasicRepository { Task FindByNameAsync(string name); Task> GetPeopleInTheCityAsync(string cityName); } }