view Chronosv2/source/Presentation/Core/Configuration/IWidgetConfigurationService.cs @ 18:8049f7c58c2b

Login form 75% there
author stevenh7776 stevenhollidge@hotmail.com
date Wed, 14 Mar 2012 18:06:36 +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
    }
}