// src/Webshop.Domain/Interfaces/ISettingService.cs using System.Threading.Tasks; namespace Webshop.Domain.Interfaces { // Deklariert "Business"-Methoden, die von anderen Services genutzt werden public interface ISettingService { Task GetSettingValueAsync(string key, T defaultValue); Task UpdateSettingAsync(string key, string? value); } }