public void MoveToArchiveContactPerson(string Ids, string IsArchive, string CurrentObjectName)
        {
            CustomProfile            profile             = CustomProfile.GetProfile();
            iContactPersonInfoClient ContactPersonClient = new iContactPersonInfoClient();

            ContactPersonClient.SetContactPersonArchive(Ids, IsArchive, Convert.ToInt64(profile.Personal.UserID).ToString(), CurrentObjectName + "_ContactPerson", sessionID, profile.DBConnection._constr);
            ContactPersonClient.Close();
        }