public UpdateOrderOfCustomer() { InitializeComponent(); CostumerSelectionComboBox.ItemsSource = CostumerOrderBL.GetAll(); CostumerSelectionComboBox.DisplayMemberPath = "full_Name"; IdOrderSelectionComboBox.ItemsSource = CostumerOrderBL.GetAll(); IdOrderSelectionComboBox.DisplayMemberPath = "Id"; }
public CustomerOrderList() { InitializeComponent(); IdOrderSelectionComboBox.ItemsSource = CostumerOrderBL.GetAll(); IdOrderSelectionComboBox.DisplayMemberPath = "Id"; }