Ejemplo n.º 1
0
        public CountryStubSearchModel SearchCountryStubCitiesWithServices(CountryStubSearchModel searchModel)
        {
            GetCountrySearchStubCommand getCountrySearchStubCommand = new GetCountrySearchStubCommand(searchModel, null);

            getCountrySearchStubCommand.Execute();
            searchModel.Result = getCountrySearchStubCommand.CommandResult;
            return(searchModel);
        }
Ejemplo n.º 2
0
        public CommunityCountryStubSearchModel SearchCountryStubCitiesWithCommunities(CommunityCountryStubSearchModel searchModel)
        {
            GetCountrySearchStubCommand getCountrySearchStubCommand = new GetCountrySearchStubCommand(searchModel, new ListingType?(searchModel.ListingType));

            getCountrySearchStubCommand.Execute();
            searchModel.Result = getCountrySearchStubCommand.CommandResult;
            return(searchModel);
        }