Mercurial > silverbladetech
view 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 |
line wrap: on
line source
using System.Collections.Generic; using System.Configuration; using Chronos.Presentation.Core.Widgets; namespace Chronos.Presentation.Core.Configuration { public interface IWidgetConfigurationService { #region · Methods · IEnumerable<IWidget> GetWidgets(); T GetWidgetConfigurationSection<T>(string sectionName) where T: ConfigurationSection; #endregion } }