Beispiel #1
0
        public ActionResult PostComment(string name, string comment, string user)
        {
            var service = new AlbumFotoService();

            if (comment != null && user != null)
            {
                service.ComentOnPicture(name, Guid.NewGuid().ToString(), comment, user);
            }
            return(RedirectToAction("Index"));
        }