private void Adjuntotbn_Click(object sender, EventArgs e)
        {
            ingrediente = new Ingredientes();
            Adjunto adjunto = new Adjunto(false, ingrediente);

            adjunto.ShowDialog();
            PopulaGridIngredientes(ingrediente);
        }
        private void adjuntoToolStripMenuItem_Click(object sender, EventArgs e)
        {
            Adjunto adjunto = new Adjunto(true, null);

            adjunto.Show();
        }