コード例 #1
0
        public ActionResult AddComment(Guid id, string photoComment)
        {
            var photo  = photorepo.AddCommentPhoto(id, photoComment);
            var photos = PhotoModelMapping.ModelToEntity(photo);

            return(PartialView("IndexPartial", photos));
        }