public ActionResult EditGallery(int ID) { var gallery = socialService.GetGallery(ID); return(View(gallery)); }
public ActionResult GalleryDetail(int id) { var gallery = socialService.GetGallery(id); return(View(gallery)); }