Exemplo n.º 1
0
        public ActionResult AddTag(long photoID, string tags)
        {
            Photo photo = PhotoService.AddTag(photoID, tags);

            if (photo == null)
            {
                return(new HttpNotFoundResult(string.Format("Photo {0} was not found", photoID)));
            }

            return(PartialView("_TagPartial", photo));
        }