public ActionResult Create(lotrinh collection)
        {
            if (ModelState.IsValid)
            {
                var dao = new LoTrinhDao();

                long id = dao.Insert(collection);
                if (id > 0)
                {
                    return(RedirectToAction("Index", "LoTrinh"));
                }
                else
                {
                    ModelState.AddModelError("", "Thêm không thành công");
                }
            }
            return(View("Index"));
        }