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

Get() public method

public Get ( int postId ) : List
postId int
return List
        public List<ViewCount> Get(int postId)
        {
            return _viewCountLogic.Get(postId);
        }