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

SearchPosts() public method

public SearchPosts ( string query, int threshold = 5, int skip = 10 ) : List
query string
threshold int
skip int
return List
        public List<Post> SearchPosts(string query, int threshold = 5, int skip = 10)
        {
            return _postsLogic.SearchPosts(query, threshold, skip);
        }