Ejemplo n.º 1
0
        private void btnSil_Click(object sender, EventArgs e)
        {
            var st = _serviceStudent.GetById((int)numericUpDown1.Value);

            if (st == null)
            {
                MessageBox.Show("Kayıt yok");
            }
            else
            {
                _serviceStudent.Delete(st);
            }

            GetData();
        }
Ejemplo n.º 2
0
 public void Delete(int id)
 {
     ServiceStudent.Delete(id);
 }