Exemplo n.º 1
0
        //
        // GET: /Customer/Profile

        public ActionResult Profile()
        {
            if (IsNotLogin())
            {
                return(View(MUST_LOGIN_AREA));
            }

            KhachHang dbKhach = Db.Customer.Find(base.MaKH);

            ViewBag.IsProfileNotCompleted = dbKhach.IsNotCompleted();

            return(View(dbKhach));
        }