/// <summary>
        /// Date Created:   24/08/2011
        /// Created By:     Gabriel Oquialda
        /// (description)   Load vehicle type to dropdownlist
        /// ----------------------------------------------------
        /// Date Modified:  06/09/2011
        /// Modified By:    Josephine Gad
        /// (description)   Change vehicleGetType to vehicleGetTypeBrandMake
        /// </summary>
        private void vehicleGetType()
        {
            DataTable dt = new DataTable();

            try
            {
                dt = VendorMaintenanceBLL.vehicleGetTypeList();
                if (dt.Rows.Count > 0)
                {
                    uoDropDownListVehicleType.DataSource     = dt;
                    uoDropDownListVehicleType.DataTextField  = "vehicleType";
                    uoDropDownListVehicleType.DataValueField = "vehicleTypeID";
                    uoDropDownListVehicleType.DataBind();
                }
                else
                {
                    uoDropDownListVehicleType.DataBind();
                }

                uoDropDownListVehicleType.Items.Insert(0, new ListItem("--Select Vehicle Type--", "0"));

                if (dt.Rows.Count == 1)
                {
                    uoDropDownListVehicleType.SelectedIndex = 1;
                }
            }
            catch (Exception ex)
            {
                throw ex;
            }
            finally
            {
                if (dt != null)
                {
                    dt.Dispose();
                }
            }
        }