public void MapearBuscar(DataGridView dtg, string nom)
        {
            dtg.Rows.Clear();
            Medicamento medicamento = medicamentoService.Buscar(nom);
            int         n           = dtg.Rows.Add();

            dtg.Rows[n].Cells[0].Value = medicamento.Nombre;
            dtg.Rows[n].Cells[1].Value = medicamento.Presentacion;
            dtg.Rows[n].Cells[2].Value = medicamento.Cantidad;
        }