Beispiel #1
0
        public ActionResult IntroduComm(string comentariu, string poza)
        {
            var service = new AlbumFotoService();

            if (!(string.IsNullOrEmpty(comentariu)) && !(string.IsNullOrEmpty(poza)))
            {
                service.IntroduComm(Guid.NewGuid().ToString(), poza, comentariu);
            }
            return(View("Index", service.GetPoze()));
        }