public void UpdateAttributeSetIsActiveByAttributeSetID(int attributeSetId, int storeId, int portalId, string userName, bool isActive)
 {
     try
     {
         ItemAttributesManagementSqlProvider obj = new ItemAttributesManagementSqlProvider();
         obj.UpdateAttributeSetIsActive(attributeSetId, storeId, portalId, userName, isActive);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }