Ejemplo n.º 1
0
        public async void SetValueInPickerAsync()
        {
            List <AccountTypeVm> accountTypeVm = new List <AccountTypeVm>();

            accountTypeVm = await AccountTypeService.GetAccountTypeList();

            foreach (var item in accountTypeVm)
            {
                accountTypePicker.Items.Add(item.Name);
            }
        }