using WorkFlowCheck.Common.DTO; namespace WorkFlowCheck.Web.Services.Interfaces { public interface ISystemService { Task> GetAllImageFilesAsync(); Task> DownloadFile(string filename); Task> GetAllPDFFilesAsync(); Task> DownloadPDFFile(string filename); } }