public void NuevoAjusteInventario(Producto Datos)
 {
     try
     {
         Inventario_Datos ID = new Inventario_Datos();
         ID.NuevoAjusteInventario(Datos);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
 public void TransferenciaInventario(Transferencia Datos)
 {
     try
     {
         Inventario_Datos ID = new Inventario_Datos();
         ID.TransferenciaInventario(Datos);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
 public void ActualizarDatosInventario(Producto Datos)
 {
     try
     {
         Inventario_Datos ID = new Inventario_Datos();
         ID.ActualizarDatosInventario(Datos);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }