示例#1
0
 public ChooseEmployeeWindow(ChangeBusrideWindow _parent)
 {
     InitializeComponent();
     parentWindow   = _parent;
     employeeObject = new List <EmployeeObject>();
     this.Title     = "Choose Driver - Welcome " + Authenticator.GetUserInfo() + ".";
     UpdateStations();
 }
示例#2
0
 public ChooseStationWindow(ChangeBusrideWindow _parent, bool _isAvgang)
 {
     InitializeComponent();
     parentWindow  = _parent;
     isAvgang      = _isAvgang;
     stationObject = new List <StationObject>();
     this.Title    = "Choose Station - Welcome " + Authenticator.GetUserInfo() + ".";
     UpdateStations();
 }