| 1234567891011121314151617 |
- 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
- {
- /// <summary>
- /// Reads the current configuration from the global config
- /// </summary>
- AppendixConfigurationSection GetCurrentConfiguration();
- }
- }
|