namespace Bookstore.Domain { public interface IFileService { public Task SaveAsync(Stream? contents, string? filename); public Task DeleteAsync(string? filePath); } }