void KayitGoster()
        {
            HttpClient client = new HttpClient();

            string kullanici_refno = dataGridView1.Rows[satir].Cells["KULLANICI_REFNO"].Value.ToString();
            Task <HttpResponseMessage> response = client.GetAsync("http://localhost:56782/api/Kullanici/" + kullanici_refno);
            Task <string> jsonkullanici         = response.Result.Content.ReadAsStringAsync();

            KULLANICI kullanici = JsonConvert.DeserializeObject <KULLANICI>(jsonkullanici.Result);

            txtKULLANICI_REFNO.Text = Convert.ToString(kullanici.KULLANICI_REFNO);
            txtKULLANICI_ADI.Text   = kullanici.KULLANICI_ADI;
            txtPAROLA.Text          = kullanici.PAROLA;
            txtDURUMU.Text          = Convert.ToString(kullanici.DURUMU);
        }