Exemplo n.º 1
0
        void KategoriMarkaComboDoldur() //ARAÇ EKLEME KATEGORİ COMBOBOX'I
        {
            KategoriComboBox2.DataSource = null;
            List <E_Arac> ktgr = new List <E_Arac>();

            ktgr = BLL_Arac.Kategoriler();

            KategoriComboBox2.DataSource = ktgr;

            KategoriComboBox2.DisplayMember = "Kategori";
            KategoriComboBox2.ValueMember   = "KategoriID";
            KategoriComboBox2.SelectedIndex = -1;
        }
Exemplo n.º 2
0
        void KategoriMarkaComboDoldur() //KATEGORİLER
        {
            KategoriComboBox1.DataSource = null;
            List <E_Arac> ktgr = new List <E_Arac>();

            ktgr = BLL_Arac.Kategoriler();

            KategoriComboBox1.DataSource = ktgr;

            KategoriComboBox1.DisplayMember = "Kategori";
            KategoriComboBox1.ValueMember   = "KategoriID";
            KategoriComboBox1.SelectedIndex = -1;
        }