コード例 #1
0
        public PartialViewResult WorkList()
        {
            List<SA4Launcher.Models.WorklistItem> CurrentWorkList = new List<SA4Launcher.Models.WorklistItem>();

            WorkListContext wl = new WorkListContext();
            CurrentWorkList = wl.LoadWorkList();

            return PartialView("WorkList", CurrentWorkList);
        }
コード例 #2
0
 public ActionResult ProcessAction(string serialno, string workitem_action)
 {
     WorkListContext wl = new WorkListContext();
     wl.WorkItemAction(serialno, workitem_action);
     return RedirectToAction("Index");
 }