public void Destroy(int p_NotificacionEvento_OID)
        {
            /*PROTECTED REGION ID(MultitecUAGenNHibernate.CP.MultitecUA_NotificacionEvento_destroy) ENABLED START*/

            INotificacionEventoCAD notificacionEventoCAD = null;
            NotificacionEventoCEN  notificacionEventoCEN = null;



            try
            {
                SessionInitializeTransaction();
                notificacionEventoCAD = new NotificacionEventoCAD(session);
                notificacionEventoCEN = new  NotificacionEventoCEN(notificacionEventoCAD);



                notificacionEventoCAD.Destroy(p_NotificacionEvento_OID);


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


            /*PROTECTED REGION END*/
        }
Пример #2
0
 public NotificacionEventoCEN(INotificacionEventoCAD _INotificacionEventoCAD)
 {
     this._INotificacionEventoCAD = _INotificacionEventoCAD;
 }
Пример #3
0
 public NotificacionEventoCEN()
 {
     this._INotificacionEventoCAD = new NotificacionEventoCAD();
 }