namespace NetinaShop.Core.Abstracts; public interface IStorageService : IScopedDependency { Task UploadObjectFromFileAsync(string fileName, string filePath, string contentType, byte[] fileBytes, bool fixName = true); Task UploadObjectFromFileAsync(string fileName, string filePath, string contentType, Stream fileStream, bool fixName = true); Task> GetStorageFiles(StorageFileType fileType); }