private void ListaMenus_Load(object sender, EventArgs e)
        {
            label1.Text = Retornar();
            ControladorPizzza pi = new ControladorPizzza();

            dgMenus.DataSource = pi.TraerMenuPizzeria(np);
        }
        private void button1_Click(object sender, EventArgs e)
        {
            ControladorPizzza pi = new ControladorPizzza();


            DataTable dt = new DataTable();

            // string precio = dgMenus.CurrentCell.Value.ToString();
            dt = dgMenus.DataSource as DataTable;


            string nombre = dt.Rows[0][0].ToString();
            string precio = dgMenus.CurrentRow.Cells[3].Value.ToString();

            // MessageBox.Show(precio);


            dgMenus.DataSource = pi.TraerMenuPizzeria(np);
            //IU_Adiciones ir = new IU_Adiciones();
            IU_Adiciones irPizza = new IU_Adiciones(double.Parse(precio), nombre);

            irPizza.Visible = true;
            this.Visible    = false;
        }