Blog.Services.Implementation.TagsService.GetByPostId C# (CSharp) Method

GetByPostId() public method

public GetByPostId ( int postId ) : List
postId int
return List
        public List<Tag> GetByPostId(int postId)
        {
            return _tagsLogic.GetByPostId(postId);
        }