Ejemplo n.º 1
0
 /// <summary>
 /// Get a list of <see cref="NoteType"/> objects
 /// </summary>
 /// <returns></returns>
 public IEnumerable <NoteType> GetAll()
 {
     using (var repo = new NoteTypesRepository())
     {
         return(repo.GetAll());
     }
 }