42 lines
1.2 KiB
C#
42 lines
1.2 KiB
C#
// <copyright file="SemesterListPickerItemListModel.cs" company="BTU/IIT">
|
|
// Company copyright tag.List
|
|
// </copyright>
|
|
// <author>stubbfel</author>
|
|
// <sience>25.07.2013</sience>
|
|
//----------------------------------------------------------------------
|
|
namespace CampusAppWPortalLib8.Model.Utility
|
|
{
|
|
/// <summary>
|
|
/// Class for the SemesterList
|
|
/// </summary>
|
|
public class SemesterListPickerItemListModel : ListPickerItemListModel
|
|
{
|
|
#region Constructor
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="SemesterListPickerItemListModel" /> class.
|
|
/// </summary>
|
|
public SemesterListPickerItemListModel()
|
|
: base()
|
|
{
|
|
this.LoadList();
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Method
|
|
|
|
/// <summary>
|
|
/// Overrides the LoadList-Method <see cref="ListPickerItemListModel"/>
|
|
/// </summary>
|
|
protected override void LoadList()
|
|
{
|
|
this.AddItem(new ListPickerItemModel("20132", "WiSe 13/14"));
|
|
this.AddItem(new ListPickerItemModel("20141", "SoSe 14"));
|
|
this.AddItem(new ListPickerItemModel("20142", "WiSe 14/15"));
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|