コード例 #1
0
        /// <summary>
        /// Modifier une note en base
        /// </summary>
        /// <param name="n">Note à modifier</param>
        public void ModifierNote(Note n)
        {
            // TODO : ajouter des contrôles sur la note (exemple : vérification de champ, etc.)
            NoteCommand nc = new NoteCommand(contexte);

            nc.Modifier(n);
        }
コード例 #2
0
ファイル: Manager.cs プロジェクト: Audrey4899/Projet.NET
        public void ModifierNote(Note n)
        {
            NoteCommand nc = new NoteCommand(contexte);

            nc.Modifier(n);
        }