public override void DidSelectContact(CNContactPickerViewController picker, CNContact contact)
        {
            if (contact != null)
            {
                var sections = new List <Section>
                {
                    new Section {
                        Items = new List <string> {
                            contact.GetFormattedName()
                        }
                    }
                };

                this.callback(sections);
            }
        }