Example #1
0
        public void Destroy(int p_NotificacionMensaje_OID)
        {
            /*PROTECTED REGION ID(MultitecUAGenNHibernate.CP.MultitecUA_NotificacionMensaje_destroy) ENABLED START*/

            INotificacionMensajeCAD notificacionMensajeCAD = null;
            NotificacionMensajeCEN  notificacionMensajeCEN = null;



            try
            {
                SessionInitializeTransaction();
                notificacionMensajeCAD = new NotificacionMensajeCAD(session);
                notificacionMensajeCEN = new  NotificacionMensajeCEN(notificacionMensajeCAD);



                notificacionMensajeCAD.Destroy(p_NotificacionMensaje_OID);


                SessionCommit();
            }
            catch (Exception ex)
            {
                SessionRollBack();
                throw ex;
            }
            finally
            {
                SessionClose();
            }


            /*PROTECTED REGION END*/
        }
Example #2
0
 public NotificacionMensajeCEN(INotificacionMensajeCAD _INotificacionMensajeCAD)
 {
     this._INotificacionMensajeCAD = _INotificacionMensajeCAD;
 }
Example #3
0
 public NotificacionMensajeCEN()
 {
     this._INotificacionMensajeCAD = new NotificacionMensajeCAD();
 }