public Comment GetByID(Guid id)
 {
     return(commentDao.GetById(id));
 }
Exemple #2
0
 /// <summary>
 /// Method for get an specific comment by id
 /// </summary>
 /// <param name="id"></param>
 /// <returns></returns>
 public Comment Get(int id)
 {
     return(Repo.GetById(id));
 }