Example #1
0
        private void InitializeObjects()
        {
            wcustomer  = new WorkCustomer();
            wticket    = new WorkTicket();
            projection = new Projection();
            wseat      = new WorkSeat();
            seats      = new List <Seat>();

            cmbCustomer.ItemsSource = wcustomer.GetAll();
        }
Example #2
0
 private void SetDefaultCustomers()  //carga en la lista los cientes
 {
     this.List.ItemsSource  = wc.GetAll();
     this.btnAdd.Visibility = Visibility.Visible;
 }
Example #3
0
 public void ListBoxCustomers()
 {
     customers = workCustomer.GetAll();
     cmbCustomers.ItemsSource = workCustomer.GetAll();
 }