Example #1
0
        private void BusTypeForm_Load(object sender, EventArgs e)
        {
            _busTypeBusiness = new BusTypeBussiness();
            RefreshGrid();
            BusPropertyBussiness _busPropertyBLL = new BusPropertyBussiness();

            cmbBusPropertyTablo.DataSource    = _busPropertyBLL.GetAllBLL();
            cmbBusPropertyTablo.ValueMember   = "ID";
            cmbBusPropertyTablo.DisplayMember = "Name";
        }
Example #2
0
 private void BusPropertyForm_Load(object sender, EventArgs e)
 {
     _busPropertBll = new BusPropertyBussiness();
     RefleshGrid();
 }