/// <summary>
 /// To Delete by Attribute ID
 /// </summary>
 /// <returns></returns>
 public static void DeleteAttribute(int attributeId, AspxCommonInfo aspxCommonObj)
 {
     try
     {
         AspxItemAttrMgntProvider.DeleteAttribute(attributeId, aspxCommonObj);
     }
     catch (Exception e)
     {
         throw e;
     }
 }
 public static void DeleteAttribute(AttributeSaveInfo deleteGroupObj, AspxCommonInfo aspxCommonObj)
 {
     try
     {
         AspxItemAttrMgntProvider.DeleteAttribute(deleteGroupObj, aspxCommonObj);
     }
     catch (Exception e)
     {
         throw e;
     }
 }