using NetinaShop.Domain.Models.Districts; namespace NetinaShop.Core.Abstracts; public interface IDistrictService : IScopedDependency { public List GetCitiesAsync(int? provinceId = null); public List GetProvincesAsync(); }