Ejemplo n.º 1
0
        public int loadID()
        {
            bll = new BLL.BLLDangNhap();
            DataTable dt = new DataTable();

            dt = bll.registration();
            return(dt.Rows[0].Field <int>("id"));
        }
Ejemplo n.º 2
0
 public void registration()
 {
     if (bll.registration().Rows.Count > 0)
     {
         llbRegistration.Text = "";
         lbQues.Text          = "";
     }
 }
Ejemplo n.º 3
0
        public String loadName()
        {
            bll = new BLL.BLLDangNhap();
            DataTable dt = new DataTable();

            dt = bll.registration();
            return(dt.Rows[0].Field <String>("username").ToString());
        }