mirror of https://github.com/abpframework/abp.git
committed by
GitHub
3 changed files with 1463 additions and 5 deletions
@ -1,15 +1,21 @@ |
|||
using System.Threading.Tasks; |
|||
using Volo.Abp.Application.Dtos; |
|||
using Volo.Abp.Application.Services; |
|||
using Volo.Abp.Content; |
|||
using Volo.Docs.Admin.Projects; |
|||
using Volo.Docs.Common.Documents; |
|||
|
|||
namespace Volo.Docs.Admin.Documents; |
|||
|
|||
public interface IDocumentPdfAdminAppService : IDocumentPdfAppService |
|||
public interface IDocumentPdfAdminAppService : IApplicationService |
|||
{ |
|||
Task<IRemoteStreamContent> DownloadPdfAsync(DocumentPdfGeneratorInput input); |
|||
|
|||
Task<bool> ExistsAsync(DocumentPdfGeneratorInput input); |
|||
|
|||
Task GeneratePdfAsync(DocumentPdfGeneratorInput input); |
|||
|
|||
|
|||
Task<PagedResultDto<ProjectPdfFileDto>> GetPdfFilesAsync(GetPdfFilesInput input); |
|||
|
|||
Task DeletePdfFileAsync(DeletePdfFileInput input); |
|||
} |
|||
} |
|||
|
|||
File diff suppressed because it is too large
Loading…
Reference in new issue