private void EliminarBtn_Click(object sender, EventArgs e)
 {
     if (string.IsNullOrEmpty(CodigoProductoTxt.Text) == false)
     {
         factura.Detalles = facturaService.ListaSinUnProducto(factura.Detalles, int.Parse(CodigoProductoTxt.Text));
         PintarTablaDetalles(factura.Detalles);
         rellenarTxtTotales();
     }
     else
     {
         MessageBox.Show("Porfavor verifique si existe el producto primero");
     }
 }