Ejemplo n.º 1
0
 private void ObtenerPrecioProducto()
 {
     P.Idproducto = Convert.ToInt32(Program.Idproduct);
     dtPrecios.Rows.Clear();
     try
     {
         dtPrecios = P.ObtenerPrecios();
     }
     catch (Exception ex)
     {
         MessageBox.Show(ex.Message);
     }
 }