Exemplo n.º 1
0
 public MainWindow()
 {
     try
     {
         InitializeComponent();
         CenterWindowOnScreen();
         MainTab.SelectedIndex = 0;
         facade = FacadeController.GetInstance();
     }
     catch (Exception ex)
     {
         MessageBox.Show("Window Init Error" + ex.Message);
     }
     InitializeWindowContent();
 }
Exemplo n.º 2
0
 public CheckInWindow(string bookingid)
 {
     InitializeComponent();
     facade = FacadeController.GetInstance();
     LoadData(bookingid);
 }