Example #1
0
        public ActionResult EditGallery(Gallery gallery)
        {
            if (ModelState.IsValid)
            {
                socialService.UpdateGallery(gallery);
                socialService.Save();

                return(RedirectToAction("Galleries"));
            }

            return(View(gallery));
        }