/// <summary> /// Defines actions to be performed when a button is pressed /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void Start_Click(object sender, RoutedEventArgs e) { try { bl.CreateBusTravel(tempBus.LicenseNumber, tempLine.Id, DateTime.Now, DateTime.Now, 0, DateTime.Now, DateTime.Now, tempDriver.UserName); } catch { } foreach (Window w in Application.Current.Windows) { if (w.Name == "PresentatinBuses") { w.Close(); } } bl.UpdateBusStatus(0, tempBus.LicenseNumber); MessageBox.Show("bus started the travel successfully"); this.Close(); }