7 lines
217 B
C#
7 lines
217 B
C#
using ApplicationLayer.InfrastructureServicesInterfaces;
|
|
using Domains.LocationDomain;
|
|
|
|
namespace ApplicationLayer.Services.Locations.NeededServices;
|
|
|
|
public interface ICitiesRepository : IGenericRepository<City>;
|