private void bt_CNDL_Click(object sender, EventArgs e) { if (string.IsNullOrEmpty(tb_TenTacGia.Text)) { MessageBox.Show("Không được để trống thể loại sách.", "Chú ý", MessageBoxButtons.OK, MessageBoxIcon.Warning); tb_TenTacGia.Focus(); } else { try { TacGiaService sv = new TacGiaService(); TacGiaDtos tdg = new TacGiaDtos(); TenTacGia = HelperGUI.Instance.KiemTraHoTen(tb_TenTacGia.Text); NgaySinh = dt_NgaySinh.Value; tdg.TenTacGia = TenTacGia; tdg.NgaySinh = NgaySinh; sv.AddFormTacGia(tdg); MessageBox.Show("Thêm thành công!"); HelperGUI.ResetAllControls(groupControl_ThemTacGia); } catch { } } }
private void bt_CNDL_Click(object sender, EventArgs e) { TacGiaService sv = new TacGiaService(); TacGiaDtos tdg = new TacGiaDtos(); TenTacGia = HelperGUI.Instance.KiemTraHoTen(tb_TenTacGia.Text); NgaySinh = dt_NgaySinh.Value; tdg.TenTacGia = TenTacGia; tdg.NgaySinh = NgaySinh; sv.AddFormTacGia(tdg); MessageBox.Show("Thêm thành công!"); fillAllDataFromTableTacGia(); HelperGUI.ResetAllControls(groupControl_TTTG); }