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

7 lines
217 B
C#

using ApplicationLayer.InfrastructureServicesInterfaces;
using Domains.LocationDomain;
namespace ApplicationLayer.Services.Locations.NeededServices;
public interface ICitiesRepository : IGenericRepository<City>;