using System.Collections.Generic; using BeWo.Core; namespace BeWo.View.Navigation.Sorter { internal class CustomerSorter : AbstractSorter { public override List SortItems { get { List list = new List(); list.Add(new SortItem("Nachname", "LastName")); 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")); return list; } } } }