// Métodos
        private async void GetAllMotoristas()
        {
            var motoristas = await _motoristaApp.GetAll();

            foreach (var item in motoristas)
            {
                cbxMotorista.Items.Add($"{item.Id} - {item.Nome}");
            }
        }
Esempio n. 2
0
 // Métodos
 private async void GetAllMotoristas()
 {
     dgvMotoristas.DataSource = await _motoristaApp.GetAll();
 }