Blog.Services.Implementation.CommentsService.Get C# (CSharp) Метод

Get() публичный Метод

public Get ( int commentId ) : Comment
commentId int
Результат Blog.Common.Contracts.Comment
        public Comment Get(int commentId)
        {
            return _commentsLogic.Get(commentId);
        }