public void UPD_Detalle_Entrada_Inventario(MOD_Detalle_Entrada_Inventario obj)
 {
     try
     {
         this.IniciarTransaccion();
         AD_Detalle_Entrada_Inventario objDetalle_Entrada_Inventario = new AD_Detalle_Entrada_Inventario();
         objDetalle_Entrada_Inventario.UPD_Detalle_Entrada_Inventario(this.comando, obj);
         this.ConfirmarTransaccion();
     }
     catch (Exception exc)
     {
         this.DeshacerTransaccion();
         throw exc;
     }
 }