Ejemplo n.º 1
0
        public ActionResult ShowOtherImages(ListingImage image, string stateCode)
        {
            var listingImage = serviceUtils.PopulateOtherImagesForListing(image, stateCode);

            return PartialView("OtherImages", listingImage);
        }
Ejemplo n.º 2
0
 public ListingImage PopulateOtherImagesForListing(ListingImage listingImage, string stateCode)
 {
     listingImage.OtherListingImages = _imageHashRepo.GetAllImagesForListing(listingImage.ListingId, stateCode);
     return(listingImage);
 }
Ejemplo n.º 3
0
 public ListingImage PopulateOtherImagesForListing(ListingImage listingImage, string stateCode)
 {
     listingImage.OtherListingImages = _imageHashRepo.GetAllImagesForListing(listingImage.ListingId, stateCode);
     return listingImage;
 }