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

GetByPostId() public method

public GetByPostId ( int id ) : List
id int
return List
        public List<Comment> GetByPostId(int id)
        {
            return _commentsLogic.GetByPostId(id);
        }