Ejemplo n.º 1
0
        public ActionResult GetComment()
        {
            var service = new AlbumFotoService();
            var poza    = Request["Picture"].ToString();

            return(View("Comments", service.GetComentarii(poza)));
        }
Ejemplo n.º 2
0
        public ActionResult GetComentarii(Poza poza)
        {
            var service = new AlbumFotoService();

            return(View("Comentarii", service.GetComentarii(poza.Description)));
        }