This commit is contained in:
Paul Schneider 2015-01-27 14:17:33 +01:00
commit 93c18633b9
28 changed files with 338 additions and 150 deletions

View file

@ -4,8 +4,16 @@ using System.Collections.Generic;
namespace Yavsc
{
/// <summary>
/// Thanks helper.
/// </summary>
public static class ThanksHelper {
static private ThanksConfigurationSection configurationSection=null;
static private ThanksConfigurationSection configurationSection=null;
/// <summary>
/// Gets the configuration section.
/// </summary>
/// <value>The configuration section.</value>
static public ThanksConfigurationSection ConfigurationSection {
get {
if (configurationSection==null)
@ -13,7 +21,9 @@ namespace Yavsc
return configurationSection;
}
}
/// <summary>
/// Html code for each entry
/// </summary>
public static string[] Links ()
{
List<string> result = new List<string>() ;