Esempio n. 1
0
        public string requestFocusedNote(string usernameValue, string requestId)
        {
            Views.ShowNoteTakerData importShowNoteTakerData = new Views.ShowNoteTakerData();

            string output = "";

            output += importShowNoteTakerData.showFocusedNote(this.searchFocusedNote(usernameValue, requestId));

            return output;
        }
Esempio n. 2
0
        public string requestAllNotes(string usernameValue, string searchBy, string searchValue, string searchNotes, string selectNote, string deleteSelected)
        {
            Views.ShowNoteTakerData importShowNoteTakerData = new Views.ShowNoteTakerData();

            string output = "";

            output += importShowNoteTakerData.showAllNotes(this.searchAllNotes(usernameValue, searchBy, searchValue, searchNotes, selectNote, deleteSelected));

            return output;
        }