public MainWindow() { InitializeComponent(); transportService = new TransportsService("TransportDbConnection"); transports = transportService.GetAll(); cBoxTransport.DataContext = transports; }
private void UpdateControls() { int index = cBoxTransport.SelectedIndex; transportService = new TransportsService("TransportDbConnection"); transports = transportService.GetAll(); cBoxTransport.DataContext = transports; cBoxTransport.SelectedIndex = index; }