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