예제 #1
0
        public void Destroy(int p_Notificacion_OID)
        {
            /*PROTECTED REGION ID(MultitecUAGenNHibernate.CP.MultitecUA_Notificacion_destroy) ENABLED START*/

            INotificacionCAD notificacionCAD = null;
            NotificacionCEN  notificacionCEN = null;



            try
            {
                SessionInitializeTransaction();
                notificacionCAD = new NotificacionCAD(session);
                notificacionCEN = new  NotificacionCEN(notificacionCAD);



                notificacionCAD.Destroy(p_Notificacion_OID);


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


            /*PROTECTED REGION END*/
        }
예제 #2
0
 public NotificacionCEN(INotificacionCAD _INotificacionCAD)
 {
     this._INotificacionCAD = _INotificacionCAD;
 }
예제 #3
0
 public NotificacionCEN()
 {
     this._INotificacionCAD = new NotificacionCAD();
 }