/////////////////////////////////////////////////////////// // 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 { /// /// Options for how scheduleable user names are displayed in the AyaNova UI and in reports. /// This is used by the and objects /// 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