using AIK.Service.IService; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading; using System.Threading.Tasks; namespace AIK.Service.Service { public class FileOBDService : IFileCacheService { public Task ClearAllCacheAsync() { throw new NotImplementedException(); } public Task ClearExpiredCacheAsync() { throw new NotImplementedException(); } public Task<(bool success, string localFilePath)> DownloadFileWithProgressAsync(string fileUrl, string cacheKey, IProgress progress = null, CancellationToken cancellationToken = default) { throw new NotImplementedException(); } public Task GetFileByteAsync(string fileUrl, string cacheKey = null, CancellationToken cancellationToken = default) { throw new NotImplementedException(); } } }