using System.Collections.Generic; using BeWo.Core; using BS.Shared.Translation; namespace BeWo.View.Navigation.Sorter { internal class UserSorter : AbstractSorter { public override List SortItems { get { List list = new List(); list.Add(new SortItem(Translator.Translate("Benutzername"), "LoginName")); list.Add(new SortItem(Translator.Translate("MitarbeiterSingular"), "SimpleDescription")); return list; } } } }