Blog.Services.Implementation.PostsService.SearchPosts C# (CSharp) Méthode

SearchPosts() public méthode

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