public ActionResult Edit(GearCar_Object obj)
        {
            var b = new GearCar_BCL().UPDATE(obj);

            if (b)
            {
                return(RedirectToAction("Index", "GearCar"));
            }
            else
            {
                ModelState.AddModelError("", "Edit that bai");
            }
            return(View());
        }
        public ActionResult Create(GearCar_Object obj)
        {
            var b = new GearCar_BCL().INSERT(obj);

            if (b)
            {
                return(RedirectToAction("Index", "GearCar"));
            }
            else
            {
                ModelState.AddModelError("", "them moi that bai");
            }
            return(View());
        }
        // GET: Admin/GearCar/Edit/5
        public ActionResult Edit(Guid id)
        {
            var obj = new GearCar_BCL().GetByID(id);

            return(View(obj));
        }
        // GET: Admin/GearCar
        public ActionResult Index()
        {
            var data = new GearCar_BCL().GetAll();

            return(View(data));
        }