26 lines
830 B
C#
26 lines
830 B
C#
using System.Collections.Generic;
|
|
|
|
using BeWo.Core;
|
|
|
|
namespace BeWo.View.Navigation.Sorter
|
|
{
|
|
internal class CustomerSorter : AbstractSorter
|
|
{
|
|
public override List<SortItem> SortItems
|
|
{
|
|
get
|
|
{
|
|
List<SortItem> list = new List<SortItem>();
|
|
list.Add(new SortItem("Nachname", "LastNameFirstName"));
|
|
list.Add(new SortItem("Vorname", "FirstName"));
|
|
list.Add(new SortItem("Geburtsdatum", "DateOfBirth"));
|
|
list.Add(new SortItem("Strasse", "Street"));
|
|
list.Add(new SortItem("PLZ", "PostalCode"));
|
|
list.Add(new SortItem("Ort", "Town"));
|
|
list.Add(new SortItem("Team", "Teams"));
|
|
|
|
return list;
|
|
}
|
|
}
|
|
}
|
|
} |