Files
schengen-visa/SchengenVisaApi/ApplicationLayer/Locations/NeededServices/ICountriesRepository.cs
2024-08-15 23:42:18 +03:00

7 lines
206 B
C#

using ApplicationLayer.GeneralNeededServices;
using Domains.LocationDomain;
namespace ApplicationLayer.Locations.NeededServices;
public interface ICountriesRepository : IGenericRepository<Country> { }