FetchNote() static private method

static private FetchNote ( NoteData data ) : Note
data NoteData
return Note
Example #1
0
 public static Note NoteFetch(int noteId)
 {
     return(Note.FetchNote(
                new NoteDataCriteria
     {
         NoteId = noteId
     }));
 }