public UpdateOrderFromSupplier()
 {
     InitializeComponent();
     IdNumberComboBox.ItemsSource               = orderFromSupplierBL.GetAll();
     IdNumberComboBox.DisplayMemberPath         = "Id";
     supplierChangingComboBox.ItemsSource       = supplierBL.GetAll();
     supplierChangingComboBox.DisplayMemberPath = "full_Name";
 }
 public OrderFromSupllierList()
 {
     InitializeComponent();
     IdNumberComboBox.ItemsSource       = orderFromSupplierBL.GetAll();
     IdNumberComboBox.DisplayMemberPath = "Id";
 }