示例#1
0
    private void editarNotificacion(int notificacionId)
    {
        NOTIFICACION notificacion = new NOTIFICACION();

        notificacion      = notificacion.obtainNotificacionById(notificacionId);
        lblArchivoId.Text = notificacion.ARCHIVOID.ToString();
        lblArchivo.Text   = "Archivo Anterior: " + notificacion.ARCHIVO.NOMBRE;
        edit();
    }
 private void editarNotificacion(int notificacionId)
 {
     NOTIFICACION notificacion = new NOTIFICACION();
     notificacion = notificacion.obtainNotificacionById(notificacionId);
     lblArchivoId.Text = notificacion.ARCHIVOID.ToString();
     lblArchivo.Text = "Archivo Anterior: " + notificacion.ARCHIVO.NOMBRE;
     edit();
 }