Mercurial > silverbladetech
view Chronosv2/source/Presentation/Core/Configuration/IWidgetConfigurationService.cs @ 17:7721a1270363
New files added during dev
author | stevenh7776 stevenhollidge@hotmail.com |
---|---|
date | Wed, 14 Mar 2012 01:23:57 +0700 |
parents | 443821e55f06 |
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 } }