Exemplo n.º 1
0
 /// <summary>
 /// Method to get the list of notes for the selected tribute
 /// </summary>
 /// <param name="objNote">Note entity conatining tributeId</param>
 /// <returns>List of notes</returns>
 public List<Note> GetTributeNotes(Note objNote)
 {
     NotesResource objNotesResource = new NotesResource();
     object[] param = { objNote };
     return objNotesResource.GetTributeNotes(param);
 }