コード例 #1
0
        public ActionResult Reactivate(string id, Students iep, FormCollection collection)
        {
            iep = _studentManager.SelectStudentIEP(id);

            try
            {
                if (_studentManager.ActivateIEP(iep))
                {
                    return(RedirectToAction("Index"));
                }

                return(RedirectToAction("Index"));
            }
            catch
            {
                return(View());
            }
        }