Example #1
0
 public ActionResult MyCheck()
 {
     ViewData["CheckLog"] = CheckLogManager.LoadAll().Where(f => f.UserInfo.ID == UserInfoManager.GetUserSession().ID);
     return(View("MyCheck"));
 }
Example #2
0
 public ActionResult MyApply()
 {
     ViewData["Checked"]  = ApplyManager.LoadAll().Where(f => f.SendUser.ID == UserInfoManager.GetUserSession().ID);
     ViewData["CheckLog"] = CheckLogManager.LoadAll().Where(f => f.Apply.SendUser.ID == UserInfoManager.GetUserSession().ID);
     return(View("MyApply"));
 }