Rechte für das Löschen und Bearbeiten der Zeiterfassung in der mobilen Version verbessert.
24 lines
687 B
C#
24 lines
687 B
C#
using System.Collections.Generic;
|
|
|
|
using BeWo.Core;
|
|
|
|
namespace BeWo.View.Navigation.Sorter
|
|
{
|
|
internal class OrganisationSorter : AbstractSorter
|
|
{
|
|
public override List<SortItem> SortItems
|
|
{
|
|
get
|
|
{
|
|
List<SortItem> list = new List<SortItem>();
|
|
list.Add(new SortItem("Name", "Name"));
|
|
list.Add(new SortItem("Funktion", "Function"));
|
|
list.Add(new SortItem("Strasse", "Street"));
|
|
list.Add(new SortItem("PLZ", "PostalCode"));
|
|
list.Add(new SortItem("Ort", "Town"));
|
|
|
|
return list;
|
|
}
|
|
}
|
|
}
|
|
} |