Files
BeWoPlaner/BeWo/View/Navigation/Sorter/PersonSorter.cs
Christian 9c97d6fe79 CB Merge
2019-07-12 17:36:37 +02:00

24 lines
719 B
C#

using System.Collections.Generic;
using BeWo.Core;
namespace BeWo.View.Navigation.Sorter
{
internal class PersonSorter : AbstractSorter
{
public override List<SortItem> SortItems
{
get
{
List<SortItem> list = new List<SortItem>();
list.Add(new SortItem("Nachname", "LastName"));
list.Add(new SortItem("Vorname", "FirstName"));
list.Add(new SortItem("Geburtsdatum", "DateOfBirth"));
list.Add(new SortItem("Funktion", "Function"));
list.Add(new SortItem("Organisation", "Organisation"));
return list;
}
}
}
}