private async Task LoadCustomersAsync()
 {
     cmbCustomers.ItemsSource = await SqliteContext.GetCustomerNames();
 }
Пример #2
0
 private async Task LoadCustomersAsync()
 {
     //Exekverar funktionen och hämtar alla customer namn som sedan läggs in på comboxen
     cmbCustomers.ItemsSource = await SqliteContext.GetCustomerNames();
 }