Exemple #1
0
 /// <summary>
 /// Get a lis of <see cref="Note"/> objects of a given content node
 /// </summary>
 /// <param name="contentId"></param>
 /// <returns></returns>
 public IEnumerable <Note> GetAllByContent(int contentId)
 {
     using (var repo = new NotesRepository())
     {
         return(repo.GetAllByContent(contentId));
     }
 }