using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using GreenTree.Nachtragsmanagement.Core.Configuration; namespace GreenTree.Nachtragsmanagement.Services.Configuration { public interface IConfigurationService { /// /// Reads the current configuration from the global config /// AppendixConfigurationSection GetCurrentConfiguration(); } }