Blog.Services.Implementation.PostsService.GetPost C# (CSharp) Method

GetPost() public method

public GetPost ( int postId ) : Post
postId int
return Blog.Common.Contracts.Post
        public Post GetPost(int postId)
        {
            var post = _postsLogic.GetPost(postId);

            post.PostLikes = _postLikesLogic.Get(post.Id);
            post.ViewCounts = _viewCountLogic.Get(post.Id);

            return post;
        }