public void CRE_Dueno_Mascota(MOD_Dueno_Mascota obj)
 {
     try
     {
         this.IniciarTransaccion();
         AD_Dueno_Mascota objDueno_Mascota = new AD_Dueno_Mascota();
         objDueno_Mascota.CRE_Dueno_Mascota(this.comando, obj);
         this.ConfirmarTransaccion();
     }
     catch (Exception exc)
     {
         this.DeshacerTransaccion();
         throw exc;
     }
 }