12 lines
382 B
C#
12 lines
382 B
C#
// 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<T> GetSettingValueAsync<T>(string key, T defaultValue);
|
|
Task UpdateSettingAsync(string key, string? value);
|
|
}
|
|
} |