using ApplicationLayer.GeneralNeededServices; using Domains.LocationDomain; namespace ApplicationLayer.DataAccessingServices.Locations.NeededServices; public interface ICountriesRepository : IGenericRepository { /// Gets country by name /// Name of country to seek /// Cancellation Token /// Country or null if not found Task FindByName(string countryName, CancellationToken cancellationToken); }