Ejemplo n.º 1
0
        public List <string> openNote(int note_id)
        {
            List <List <string> > response = new List <List <string> >();

            response = connection.getNoteById(note_id);
            Console.WriteLine("Retrieved");
            List <string> note = response.ElementAt(0);

            return(note);
        }