private void calisan_atama_Click(object sender, EventArgs e)
        {
            arayuzayar.SelectedIndex = 0;
            EUSERS item = new EUSERS();

            item.Username = secilen_kisi.Text;
            int kullanici_ID = BLLUSERS.User_ID_al(item.Username);

            if (atanacak_poz_combobox.Text == "Normal")
            {
                BLLUSERS.set_user_mode(kullanici_ID, 0);
                //Employee tablosundan sil
            }
            else if (atanacak_poz_combobox.Text == "Calisan")
            {
                BLLUSERS.set_user_mode(kullanici_ID, 1);
                //Employee tablosuna ekle ID
            }
            else if (atanacak_poz_combobox.Text == "Yonetici")
            {
                BLLUSERS.set_user_mode(kullanici_ID, 2);
                //Employe tablosundan sil
            }
        }