Ejemplo n.º 1
0
 /// <summary>
 /// Get a single <see cref="NoteType"/> object
 /// </summary>
 /// <param name="id"></param>
 /// <returns></returns>
 public NoteType GetById(int id)
 {
     using (var repo = new NoteTypesRepository())
     {
         return(repo.Get(id));
     }
 }