コード例 #1
0
ファイル: TaskController.cs プロジェクト: Crow0197/Team-Up
        public ActionResult CloseOrOpen(int id, bool isClose)
        {
            try
            {
                // TODO: Add delete logic here

                tk.CloseOrOpen(id, isClose);

                return(RedirectToAction("Details", new { id = id }));
            }
            catch
            {
                return(RedirectToAction("Details", new { id = id }));
            }
        }