private void BtnAgregar_Click(object sender, EventArgs e)
        {
            Repuesto repAgregar = (Repuesto)dataGridRepuestos.CurrentRow.DataBoundItem;

            if (txtCantidad.Value <= repAgregar.Stock && txtCantidad.Value > 0)
            {
                frmDetallesOT frmPadre = this.Owner as frmDetallesOT;
                frmPadre.CargarRepuesto(repAgregar, Convert.ToInt32(txtCantidad.Value));
                MessageBox.Show("El repuesto se ha añadido con exito\nCantidad: " + txtCantidad.Value, "Repuesto añadido", MessageBoxButtons.OK, MessageBoxIcon.Information);
                this.txtCantidad.Value = 1;
            }
            else
            {
                MessageBox.Show("Cantidad incorrecta, no hay suficiente stock\nStock actual: " + repAgregar.Stock, "Stock insuficiente", MessageBoxButtons.OK, MessageBoxIcon.Error);
                this.txtCantidad.Value = 1;
            }
        }