using ApplicationLayer.InfrastructureServicesInterfaces; using Domains.LocationDomain; namespace ApplicationLayer.Services.Locations.NeededServices; public interface ICitiesRepository : IGenericRepository { /// Get by name and country identifier Task GetByNameAsync(Guid requestId, string existingCity, CancellationToken cancellationToken); }