public ActionResult Register(ServiceUser.user kh) { if (ModelState.IsValid) { if (DALKhachHang.CheckEmailExisted(kh.email) == false) { kh.id_role = 1;//user default is khachhang if (DALKhachHang.Insert(kh)) { return(Login(kh.email, kh.password)); } ModelState.AddModelError("", "Không thể thêm User"); } else { ModelState.AddModelError("", "Email đã tồn tại"); } } return(View()); }
public int Insert(ObjKhachHang obj) { return(dal.Insert(obj)); }