public async Task <List <RealEstateViewDTO> > FilterRealEstateView( RealEstateFilterViewDTO realEstateFilterView) { return(await realEstateService.GetAllFilterRealEstatesViewAsync(realEstateFilterView)); }
public async Task <List <RealEstateViewDTO> > GetAllFilterRealEstates(RealEstateFilterViewDTO realEstateFilterView) { return((await new SendToServerService <List <RealEstateViewDTO>, RealEstateFilterViewDTO>().PostDataByJsonObjectAsync("RealEstate/FilterRealEstateView", realEstateFilterView)).Result); }
public async Task <List <RealEstateViewDTO> > GetAllFilterRealEstatesViewAsync(RealEstateFilterViewDTO realEstateFilterView) { return(new List <RealEstateViewDTO>()); }