Exemplo n.º 1
0
 public IEnumerable <Note> Search()
 {
     return(InListNote.Where(e => e.HeaderNote.Contains(SearchText)));
 }
Exemplo n.º 2
0
 public IEnumerable <Note> GetNotesFound()
 {
     return(InListNote.Where(e => e.HeaderNote.Contains(SearchText) ||
                             e.NoteName.Contains(SearchText)));
 }