예제 #1
0
        public ActionResult Index()
        {
            UserInfoOutputDto user = HttpContext.Session.Get <UserInfoOutputDto>(SessionKey.UserInfo) ?? new UserInfoOutputDto();

            ViewBag.TotalCount = LeaveMessageService.LoadEntitiesNoTracking(m => m.ParentId == 0 && m.Status == Status.Pended).Count();
            if (user.IsAdmin)
            {
                return(View("Index_Admin"));
            }
            return(View());
        }