public UpdateOrderFromSupplier()
 {
     InitializeComponent();
     IdNumberComboBox.ItemsSource               = orderFromSupplierBL.GetAll();
     IdNumberComboBox.DisplayMemberPath         = "Id";
     supplierChangingComboBox.ItemsSource       = supplierBL.GetAll();
     supplierChangingComboBox.DisplayMemberPath = "full_Name";
 }
Exemplo n.º 2
0
 public SupplierList()
 {
     InitializeComponent();
     supplierSelectionComboBox.ItemsSource       = supplierBL.GetAll();
     supplierSelectionComboBox.DisplayMemberPath = "full_Name";
 }
 public supplierEmailSending()
 {
     InitializeComponent();
     supplierEmailSendingComboBox.ItemsSource       = supplierBL.GetAll();
     supplierEmailSendingComboBox.DisplayMemberPath = "full_Name";
 }