/////////////////////////////////////////////////////////// // PartDisplayFormats.cs // Implementation of Class PartDisplayFormats // CSLA type: enumeration // Created on: 28-Dec-2004 // Object design: John /////////////////////////////////////////////////////////// //PartDisplayFormats using System.ComponentModel; namespace GZTW.AyaNova.BLL { #pragma warning disable 1591 /// /// Used for controlling appearance of parts in user interface /// public enum PartDisplayFormats : int { [Description("LT:PartDisplayFormats.Label.Name")] Name=0, [Description("LT:PartDisplayFormats.Label.Number")] Number=1, [Description("LT:PartDisplayFormats.Label.NumberName")] NumberName=3, [Description("LT:PartDisplayFormats.Label.NameNumber")] NameNumber=4, [Description("LT:PartDisplayFormats.Label.UPC")] UPC=5, [Description("LT:PartDisplayFormats.Label.NameUPC")] NameUPC=6, [Description("LT:PartDisplayFormats.Label.NumberNameManufacturer")] NumberNameManufacturer=7, [Description("LT:PartDisplayFormats.Label.ManufacturerName")] ManufacturerName=8, [Description("LT:PartDisplayFormats.Label.ManufacturerNumber")] ManufacturerNumber=9, [Description("LT:PartDisplayFormats.Label.CategoryNumberName")] CategoryNumberName=10, [Description("LT:PartDisplayFormats.Label.AssemblyNumberName")] AssemblyNumberName=11, //case 1995 [Description("LT:PartDisplayFormats.Label.NameNumberManufacturer")] NameNumberManufacturer = 12, //case 1995 [Description("LT:PartDisplayFormats.Label.NameCategoryNumberManufacturer")] NameCategoryNumberManufacturer = 13 #pragma warning restore 1591 }//end PartDisplayFormats }//end namespace GZ