コード例 #1
0
 public void NuevoAjusteInventario(Producto Datos)
 {
     try
     {
         Inventario_Datos ID = new Inventario_Datos();
         ID.NuevoAjusteInventario(Datos);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
コード例 #2
0
 public void TransferenciaInventario(Transferencia Datos)
 {
     try
     {
         Inventario_Datos ID = new Inventario_Datos();
         ID.TransferenciaInventario(Datos);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
コード例 #3
0
 public void ActualizarDatosInventario(Producto Datos)
 {
     try
     {
         Inventario_Datos ID = new Inventario_Datos();
         ID.ActualizarDatosInventario(Datos);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }