コード例 #1
0
        public void Modify(int p_Notificaciones_OID, string p_mensaje)
        {
            NotificacionesEN notificacionesEN = null;

            //Initialized NotificacionesEN
            notificacionesEN = new NotificacionesEN();
            notificacionesEN.Id_notificacion = p_Notificaciones_OID;
            notificacionesEN.Mensaje         = p_mensaje;
            //Call to NotificacionesCAD

            _INotificacionesCAD.Modify(notificacionesEN);
        }