public FrmThanNhan(string MaHS) { InitializeComponent(); AddDataToComboBox(); this.Text = "Thêm Thân Nhân"; Loai = 2; model = new ThanNhanModel(); this.MaHS = MaHS; }
public FrmThanNhan(string MaQHGD, string HoTen, string GioiTinh, string QuanHe, string NamSinh, string NgheNghiep) { InitializeComponent(); AddDataToComboBox(); this.Text = "Sửa Thân Nhân"; textBox1.Text = HoTen; radioButton1.Checked = (GioiTinh.Equals("Nam")); radioButton2.Checked = (GioiTinh.Equals("Nữ")); textBox2.Text = QuanHe; textBox4.Text = NgheNghiep; SelectedCbb(NamSinh); Loai = 3; model = new ThanNhanModel(); this.MaHS = MaQHGD; }