示例#1
0
        private async Task ListarVehiculosPorMarca()
        {
            int id = (int)cbMarcas.SelectedValue;

            try
            {
                this.vehiculos = await _repositorioVehiculo.ObtenerPorMarca(id);
            }
            catch (Exception ex)
            {
                Console.WriteLine(ex.Message);
            }
        }