Example #1
0
        /// <summary>
        /// kiểm tra thông tin nhập vào
        /// </summary>
        /// <param name="ds"></param>
        /// <returns></returns>
        private static bool Checkdauvao(cNhomBenhDO ds)
        {
            if (ds.MANHOMBENH.Length <= 2 || ds.MANHOMBENH.Length > 3)
            {
                XtraMessageBox.Show("Mã nhóm bệnh chỉ có 3 ký tự ");
                return false;
            }
            if (ds.MANHOMBENH.Equals(""))
            {
                XtraMessageBox.Show("Vui lòng nhập mã nhóm bênh!");
                return false;
            }
            if (ds.TENNHOMBENH.Equals(""))
            {
                XtraMessageBox.Show("Vui lòng nhập tên nhóm bệnh!");
                return false;
            }

            return true;
        }
Example #2
0
 public cNhomBenhDO Getthongtinnhombenh()
 {
     cNhomBenhDO ds = new cNhomBenhDO();
     ds.MANHOMBENH = txtMaNhom.Text;
     String[] n = txtTenNhom.Text.Split(' ');
     string sTenNhom = "";
     for (int i = 0; i < n.Length; i++)
     {
         n[i] = n[i].Trim();
         if (n[i] != "")
         {
             sTenNhom = sTenNhom + " " + n[i];
         }
     }
     ds.TENNHOMBENH = sTenNhom.Trim();
     ds.NGAYTAO = DateTime.Today;
     ds.MOTA = txtMota.Text;
     ds.TRANGTHAI=true;
     return ds;
 }