Ejemplo n.º 1
0
 public void CRE_Factura(MOD_Factura obj)
 {
     try
     {
         this.IniciarTransaccion();
         AD_Factura objFactura = new AD_Factura();
         objFactura.CRE_Factura(this.comando, obj);
         this.ConfirmarTransaccion();
     }
     catch (Exception exc)
     {
         this.DeshacerTransaccion();
         throw exc;
     }
 }