function realEstateService(){
}
realEstateService.getRealEstates = function(query, from, limit, success, error){
	$.callDotNet("Services/RealEstateService.asmx/GetRealEstates", "{'query' : '" + query + "', 'from' : " + from + ", 'limit' : " + limit + "}", success);
}

realEstateService.getRealEstate = function(realEstateID, success, error){
	$.callDotNet("Services/RealEstateService.asmx/GetRealEstateByRealEstateID", "{'realEstateID' : '" + realEstateID + "'}", success);
}

realEstateService.getRealEstateByAlternativeID = function(providerName, alternativeID, success, error){
	$.callDotNet("Services/RealEstateService.asmx/GetRealEstateByAlternativeID", "{'providerName' : '" + providerName + "', 'alternativeID' : '" + alternativeID + "'}", success);
}