void btnAgregar_Click(object sender, EventArgs e)
        {
            PlatosComentario item = new PlatosComentario();

            item.Comentario         = this.txtComentario.Text;
            this.txtComentario.Text = "";
        }
 void txtContorno_Validating(object sender, CancelEventArgs e)
 {
     if (plato.PlatosComentarios.FirstOrDefault(x => x.Comentario == txtComentario.Text) == null)
     {
         PlatosComentario comentario = new PlatosComentario();
         comentario.Comentario = txtComentario.Text;
         this.plato.PlatosComentarios.Add(comentario);
     }
     txtComentario.Text = "";
 }