예제 #1
0
        /// <summary>
        /// 获取新闻通知
        /// </summary>
        /// <returns></returns>
        public async Task <ActionResult> GetInformationList(InformationParameter parameter)
        {
            PagedResult <Information> informationList = await _informationService.GetNewNoticeList(parameter);

            return(View(informationList));
        }