// src/Webshop.Domain/Interfaces/IFileStorageService.cs using System.IO; using System.Threading.Tasks; namespace Webshop.Domain.Interfaces { public interface IFileStorageService { Task SaveFileAsync(Stream fileStream, string fileName, string contentType); } }