13 lines
387 B
C#
13 lines
387 B
C#
using WorkFlowCheck.Common.DTO;
|
|
|
|
namespace WorkFlowCheck.Web.Services.Interfaces
|
|
{
|
|
public interface ISystemService
|
|
{
|
|
Task<List<ImageFileDTO>> GetAllImageFilesAsync();
|
|
Task<ApiResponseDTO<byte[]>> DownloadFile(string filename);
|
|
Task<List<PDFFileDTO>> GetAllPDFFilesAsync();
|
|
Task<ApiResponseDTO<byte[]>> DownloadPDFFile(string filename);
|
|
}
|
|
}
|