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); }