Exemple #1
0
        public JsonResult QueryUinDataList(QueryContactParam param)
        {
            IDataFromOtherService contactService = IocMvcFactoryHelper.GetInterface <IDataFromOtherService>();

            Common.Data.JsonData json = contactService.QueryUinList(DateTime.Parse(param.StartTime), DateTime.Parse(param.EndTime), param.BeginRow, param.EndRow);
            json.AttachData = param;
            return(Json(json));
        }