Пример #1
0
        private void AddButton_Click(object sender, EventArgs e)
        {
            ДобавитьИзменитьСотрудники f = new ДобавитьИзменитьСотрудники();

            f.ShowDialog();
            сотрудникиTableAdapter.Fill(this.bookWorldDataSet.Сотрудники);
        }
Пример #2
0
 private void EditButton_Click(object sender, EventArgs e)
 {
     try
     {
         int    codeOfWorker          = Convert.ToInt32(сотрудникиDataGridView.CurrentRow.Cells[0].Value);
         string fio                   = Convert.ToString(сотрудникиDataGridView.CurrentRow.Cells[1].Value);
         string hired                 = Convert.ToString(сотрудникиDataGridView.CurrentRow.Cells[2].Value);
         string dateOfBirth           = Convert.ToString(сотрудникиDataGridView.CurrentRow.Cells[4].Value);
         string phoneNumber           = Convert.ToString(сотрудникиDataGridView.CurrentRow.Cells[5].Value);
         string title                 = Convert.ToString(сотрудникиDataGridView.CurrentRow.Cells[6].Value);
         ДобавитьИзменитьСотрудники f = new ДобавитьИзменитьСотрудники(codeOfWorker, fio, hired, dateOfBirth, phoneNumber, title);
         f.ShowDialog();
         сотрудникиTableAdapter.Fill(this.bookWorldDataSet.Сотрудники);
     }
     catch (Exception ex)
     {
         StaticHelper.ErrorNotifier(ex);
     }
 }