예제 #1
0
        public ActionResult GetComment()
        {
            var service = new AlbumFotoService();
            var poza    = Request["Picture"].ToString();

            return(View("Comments", service.GetComentarii(poza)));
        }
예제 #2
0
        public ActionResult GetComentarii(Poza poza)
        {
            var service = new AlbumFotoService();

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