Esempio n. 1
0
 private void LayDuLieuVaoControl(DTO_QLBN dTO_QLBN)
 {
     dTO_QLBN           = new DTO_QLBN();
     dTO_QLBN.MaBN      = txtMaBN.Text;
     dTO_QLBN.HoVaTen   = txtHvTBN.Text;
     dTO_QLBN.DiaChi    = txtDiaChi.Text;
     dTO_QLBN.NgaySinh  = dTP_NgaySinh.Value;
     dTO_QLBN.TinhTrang = txtTinhTrang.Text;
     dTO_QLBN.HoVaTenBS = txtHvTBS.Text;
     dTO_QLBN.MoTa      = txtMoTa.Text;
 }
Esempio n. 2
0
 public bool CapNhatBenhNhan(ref string err, ref int count, DTO_QLBN dTO_QLBN)
 {
     return(data.myExcutenonQuery(ref err, "PSD_CapNhat", CommandType.StoredProcedure,
                                  new SqlParameter("@MaBN", dTO_QLBN.MaBN),
                                  new SqlParameter("@HoVaTen", dTO_QLBN.HoVaTen),
                                  new SqlParameter("@NgaySinh", dTO_QLBN.NgaySinh),
                                  new SqlParameter("@DiaChi", dTO_QLBN.DiaChi),
                                  new SqlParameter("@HoVaTenBS", dTO_QLBN.HoVaTenBS),
                                  new SqlParameter("@TinhTrang", dTO_QLBN.TinhTrang),
                                  new SqlParameter("@MoTa", dTO_QLBN.MoTa)
                                  ));
 }