Ejemplo n.º 1
0
 /// <summary>
 /// The loadOrderView method
 /// Load the dataGridView1 with orders information
 /// and load the comboStatus with status information.
 /// </summary>
 public void loadOrderView()
 {
     dataGridView1.DataSource = orderBll.showOrdersGeneral();
     comboStatus.DataSource   = reportsBll.getStatusValues();
 }