コード例 #1
0
        private void DeleteCustomer()
        {
            string mAd    = dataGridView1.Rows[dataGridView1.CurrentRow.Index].Cells[0].Value.ToString();
            string mSoyad = dataGridView1.Rows[dataGridView1.CurrentRow.Index].Cells[1].Value.ToString();

            musteriBusiness.DeleteCustomer(mAd, mSoyad);
        }