using System.IO; using System.Threading.Tasks; using Volo.Abp.BlobStoring; namespace Volo.CmsKit { public class FakeBlobProvider : IBlobProvider { public virtual Task SaveAsync(BlobProviderSaveArgs args) { throw new System.NotImplementedException(); } public virtual Task DeleteAsync(BlobProviderDeleteArgs args) { throw new System.NotImplementedException(); } public virtual Task ExistsAsync(BlobProviderExistsArgs args) { throw new System.NotImplementedException(); } public virtual Task GetAsync(BlobProviderGetArgs args) { throw new System.NotImplementedException(); } public virtual Task GetOrNullAsync(BlobProviderGetArgs args) { throw new System.NotImplementedException(); } } }