28 lines
700 B
C#
28 lines
700 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using gehGassiApp.Domain.Common;
|
|
|
|
namespace gehGassiApp.Core.Interfaces
|
|
{
|
|
/// <summary>
|
|
/// Schnittstellenbeschreibung für einen Service der Einstellungen verwalten kann
|
|
/// </summary>
|
|
public interface ISettingsService
|
|
{
|
|
/// <summary>
|
|
/// Holen der Appsettings
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
AppSettings GetAppSettings();
|
|
|
|
/// <summary>
|
|
/// Setzen der Appsettings
|
|
/// </summary>
|
|
/// <param name="appSettings"></param>
|
|
void SetAppSettings(AppSettings appSettings);
|
|
}
|
|
}
|