private async void LoadPaymentLookup(int recipientID) { IEnumerable <LookupItem> payments = await _recipientRepository.GetPaymentLookupByRecipientIDAsync(recipientID); PaymentLookup.Clear(); foreach (LookupItem payment in payments) { PaymentLookup.Add(payment); } }