public ActionResult Create(ToChucThiViewModel tochucthiView) { try { if (ModelState.IsValid) { ToChucThiViewModel tochucthi = new ToChucThiViewModel() { ListUsers = _userMaster.GetAllUsersActiveList(), ListDeThi = _deThi.GetAllActiveDeThi() }; return(View(tochucthi)); } else { var tochucthi = AutoMapper.Mapper.Map <ToChucThi>(tochucthiView); tochucthi.Status = true; tochucthi.ID = 0; _tochucthi.AddToChucThi(tochucthi); return(RedirectToAction("Create", "ToChucThi")); } } catch (Exception) { throw; } }
public ActionResult Create() { try { ToChucThiViewModel tochucthi = new ToChucThiViewModel() { ListUsers = _userMaster.GetAllUsersActiveList(), ListDeThi = _deThi.GetAllActiveDeThi() }; return(View(tochucthi)); } catch (Exception) { throw; } }