public ActionResult GetComment() { var service = new AlbumFotoService(); var poza = Request["Picture"].ToString(); return(View("Comments", service.GetComentarii(poza))); }
public ActionResult GetComentarii(Poza poza) { var service = new AlbumFotoService(); return(View("Comentarii", service.GetComentarii(poza.Description))); }