Mercurial > silverbladetech
comparison Chronosv2/source/Presentation/Core/Configuration/IWidgetConfigurationService.cs @ 10:443821e55f06
Initial cleaned up add from Codeplex files
author | stevenh7776 stevenhollidge@hotmail.com |
---|---|
date | Tue, 21 Feb 2012 17:25:44 +0700 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
9:904a9faadf8b | 10:443821e55f06 |
---|---|
1 using System.Collections.Generic; | |
2 using System.Configuration; | |
3 using Chronos.Presentation.Core.Widgets; | |
4 | |
5 namespace Chronos.Presentation.Core.Configuration | |
6 { | |
7 public interface IWidgetConfigurationService | |
8 { | |
9 #region · Methods · | |
10 | |
11 IEnumerable<IWidget> GetWidgets(); | |
12 | |
13 T GetWidgetConfigurationSection<T>(string sectionName) | |
14 where T: ConfigurationSection; | |
15 | |
16 #endregion | |
17 } | |
18 } |