Ejemplo n.º 1
0
        public bool DeleteNote(int id)
        {
            try
            {
                notesGenerator.RemoveNote(id);

                return(true);
            }
            catch (Exception)
            {
                return(false);
            }
        }