public static Boolean UpdateAttribute(Support_Classes.Attribute objAttribute)
        {
            Boolean updateSuccessful = false;

            updateSuccessful = Attribute_DL.UpdateAttributeRecord(objAttribute);
            return(updateSuccessful);
        }
        public static Boolean InsertAttribute(Support_Classes.Attribute objAttribute)
        {
            bool insertSuccessful = false;

            insertSuccessful = Attribute_DL.InsertAttributeRecord(objAttribute);
            return(insertSuccessful);
        }