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

SearchComments() public method

public SearchComments ( string query, int threshold = 5, int skip = 10 ) : List
query string
threshold int
skip int
return List
        public List<Comment> SearchComments(string query, int threshold = 5, int skip = 10)
        {
            return _commentsLogic.SearchComments(query, threshold, skip);
        }