2024-06-06 13:26:40 +03:30
|
|
|
|
using Netina.Domain.Models.Districts;
|
2024-04-03 10:40:41 +03:30
|
|
|
|
|
2024-04-16 20:01:34 +03:30
|
|
|
|
namespace Netina.Core.Abstracts;
|
2024-04-03 10:40:41 +03:30
|
|
|
|
|
|
|
|
|
|
public interface IDistrictService : IScopedDependency
|
|
|
|
|
|
{
|
|
|
|
|
|
public List<City> GetCitiesAsync(int? provinceId = null);
|
|
|
|
|
|
public List<Province> GetProvincesAsync();
|
|
|
|
|
|
}
|