public override void FiltrByCountryAndCity() { if (!string.IsNullOrEmpty(City) && !string.IsNullOrEmpty(Country)) { Resorts = repository.GetResortsByCountryAndCity(Country, City); Hotels = repository.GetHotelsByCountryAndCity(Country, City); } }