예제 #1
0
        public ActionResult EditGallery(int ID)
        {
            var gallery = socialService.GetGallery(ID);

            return(View(gallery));
        }
예제 #2
0
        public ActionResult GalleryDetail(int id)
        {
            var gallery = socialService.GetGallery(id);

            return(View(gallery));
        }