Exemplo n.º 1
0
        public Comment GetCommentByID(int id)

        {
            var comment = repo.GetCommentByID(id);

            return(comment);
        }
Exemplo n.º 2
0
 public Comment GetCommentByID(int id)
 {
     return(repo.GetCommentByID(id));
 }