コード例 #1
0
        //
        // GET: /Dashboard/

        public ActionResult Index()
        {
            var curUserInfo      = new CommonController().GetCurrentUserbyCookie(Request[ConfigurationManager.AppSettings["userInfoCookiesKey"]]);
            var pcSvr            = new ProductCommonServices();
            var channelModelList = pcSvr.GetAllChannels(curUserInfo.IsChannelControl, curUserInfo.User_Guid);

            return(View(channelModelList));
        }