mirror of https://github.com/abpframework/abp.git
csharpabpc-sharpframeworkblazoraspnet-coredotnet-coreaspnetcorearchitecturesaasdomain-driven-designangularmulti-tenancy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
808 B
25 lines
808 B
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using Volo.Abp.Application.Services;
|
|
|
|
namespace Volo.Docs.Documents
|
|
{
|
|
public interface IDocumentAppService : IApplicationService
|
|
{
|
|
Task<DocumentWithDetailsDto> GetAsync(GetDocumentInput input);
|
|
|
|
Task<DocumentWithDetailsDto> GetDefaultAsync(GetDefaultDocumentInput input);
|
|
|
|
Task<NavigationNode> GetNavigationAsync(GetNavigationDocumentInput input);
|
|
|
|
Task<DocumentParametersDto> GetParametersAsync(GetParametersDocumentInput input);
|
|
|
|
Task<DocumentResourceDto> GetResourceAsync(GetDocumentResourceInput input);
|
|
|
|
Task<List<DocumentSearchOutput>> SearchAsync(DocumentSearchInput input);
|
|
|
|
Task<bool> FullSearchEnabledAsync();
|
|
|
|
Task<List<string>> GetLinksAsync();
|
|
}
|
|
}
|