Exemplo n.º 1
0
 private void ObtenerTipoCombustibles()
 {
     this.cboTipoCombustible.ItemsSource       = _vehiculoBl.ObtenerTipoCombustibles();
     this.cboTipoCombustible.DisplayMemberPath = "Nombre";
     this.cboTipoCombustible.SelectedValuePath = "Id";
     this.cboTipoCombustible.SelectedIndex     = 0;
 }