Example #1
0
        public Comment GetCommentByID(int id)

        {
            var comment = repo.GetCommentByID(id);

            return(comment);
        }
Example #2
0
 public Comment GetCommentByID(int id)
 {
     return(repo.GetCommentByID(id));
 }