Example #1
0
 public void CRE_Sucursal(MOD_Sucursal obj)
 {
     try
     {
         this.IniciarTransaccion();
         AD_Sucursal objSucursal = new AD_Sucursal();
         objSucursal.CRE_Sucursal(this.comando, obj);
         this.ConfirmarTransaccion();
     }
     catch (Exception exc)
     {
         this.DeshacerTransaccion();
         throw exc;
     }
 }