Blog.Services.Implementation.CommentsService.Get C# (CSharp) Method

Get() public method

public Get ( int commentId ) : Comment
commentId int
return Blog.Common.Contracts.Comment
        public Comment Get(int commentId)
        {
            return _commentsLogic.Get(commentId);
        }