Ejemplo n.º 1
0
        private async void AddTechnologiesToComboBox(ComboBox comboBox)
        {
            TechnologyController technologyController = new TechnologyController();

            comboBox.ItemsSource = await technologyController.GetAllAsync();
        }
Ejemplo n.º 2
0
        public static async void GetTechnologiesList(ComboBox comboBox)
        {
            TechnologyController techctrl = new TechnologyController();

            comboBox.ItemsSource = await techctrl.GetAllAsync();
        }