private EntityCollection GetContactsBySourceSystemId(string customerId)
 {
     return(CommonXrm.RetrieveMultipleRecords(EntityName.Contact,
                                              new string[] { Attributes.Account.AccountId, Attributes.Contact.SourceSystemId },
                                              new string[] { Attributes.Contact.DuplicateSourceSystemId },
                                              new string[] { customerId }, crmService));
 }