Example #1
0
        /// <summary>
        /// Supprimer une note en base
        /// </summary>
        /// <param name="noteID">Identifiant de la note à supprimer</param>
        public void SupprimerNote(int noteID)
        {
            NoteCommand nc = new NoteCommand(contexte);

            nc.Supprimer(noteID);
        }
Example #2
0
        public int SupprimerNote(int id)
        {
            NoteCommand nc = new NoteCommand(context);

            return(nc.Supprimer(id));
        }