Open Source Web Application Framework for ASP.NET Core
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.
 
 
 
 
 
 

22 lines
864 B

using System.Collections.Generic;
using System.Threading.Tasks;
using Volo.Abp.Application.Services;
using Volo.Docs.Projects;
namespace Volo.Docs.Documents
{
public interface IDocumentAppService : IApplicationService
{
Task<DocumentWithDetailsDto> GetByNameAsync(string projectShortName, string documentName, string version,
bool normalize);
Task<NavigationWithDetailsDto> GetNavigationDocumentAsync(string projectShortName, string version,
bool normalize);
Task<List<VersionInfoDto>> GetVersions(string projectShortName, string defaultDocumentName,
Dictionary<string, object> projectExtraProperties,
string documentStoreType, string documentName);
Task<DocumentWithDetailsDto> GetDocument(ProjectDto project, string documentName, string version, bool normalize);
}
}