39 lines
1.8 KiB
C#
39 lines
1.8 KiB
C#
///////////////////////////////////////////////////////////
|
|
// ScheduleableUserNameDisplayFormats.cs
|
|
// Implementation of Class ScheduleableUserNameDisplayFormats
|
|
// CSLA type: enumeration
|
|
// Created on: 20-Dec-2004
|
|
// Object design: John
|
|
///////////////////////////////////////////////////////////
|
|
|
|
//ScheduleableUserNameDisplayFormats
|
|
using System.ComponentModel;
|
|
|
|
namespace GZTW.AyaNova.BLL
|
|
{
|
|
/// <summary>
|
|
/// Options for how scheduleable user names are displayed in the AyaNova UI and in reports.
|
|
/// This is used by the <see cref="Global"/> and <see cref="User"/> objects
|
|
/// </summary>
|
|
public enum ScheduleableUserNameDisplayFormats : int
|
|
{
|
|
|
|
#pragma warning disable 1591
|
|
[Description("LT:ScheduleableUserNameDisplayFormats.Label.LastFirst")] LastFirst=0,
|
|
[Description("LT:ScheduleableUserNameDisplayFormats.Label.FirstLast")] FirstLast=1,
|
|
[Description("LT:ScheduleableUserNameDisplayFormats.Label.Initials")] Initials=3,
|
|
[Description("LT:ScheduleableUserNameDisplayFormats.Label.EmployeeNumberFirstLast")] EmployeeNumberFirstLast=4,
|
|
[Description("LT:ScheduleableUserNameDisplayFormats.Label.EmployeeNumberInitials")] EmployeeNumberInitials=5,
|
|
//case 1446
|
|
[Description("LT:ScheduleableUserNameDisplayFormats.Label.RegionLastFirst")]
|
|
RegionLastFirst = 6,
|
|
[Description("LT:ScheduleableUserNameDisplayFormats.Label.RegionFirstLast")]
|
|
RegionFirstLast = 7,
|
|
[Description("LT:ScheduleableUserNameDisplayFormats.Label.FirstLastRegion")]
|
|
FirstLastRegion = 8,
|
|
[Description("LT:ScheduleableUserNameDisplayFormats.Label.LastFirstRegion")]
|
|
LastFirstRegion = 9
|
|
#pragma warning restore 1591
|
|
}//end ScheduleableUserNameDisplayFormats
|
|
|
|
}//end namespace GZTW.AyaNova.BLL |