Files
schengen-visa/SchengenVisaApi/ApplicationLayer/Services/Locations/NeededServices/ICitiesRepository.cs
2024-08-20 21:34:56 +03:00

11 lines
388 B
C#

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