using Netina.Common.Models; using Netina.Domain.Dtos.SmallDtos; using Netina.Domain.Enums; namespace Netina.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); }