public static ParaEntityList <Account> searchAccountsByField(long fieldID, string fieldValue)
        {
            var accountQuery = new AccountQuery();

            accountQuery.RetrieveAllRecords = true;
            accountQuery.AddCustomFieldFilter(fieldID, ParaEnums.QueryCriteria.Equal, fieldValue);

            Service = new ParaService(CredentialProvider.Creds);
            var accounts = Service.GetList <Account>(accountQuery);

            return(accounts);
        }