Exemplo n.º 1
0
        public ActionResult GetFormJson(string keyValue)
        {
            var data = userGroupBLL.GetEntity(keyValue);

            return(Content(data.ToJson()));
        }
Exemplo n.º 2
0
        public ActionResult GetListJson(string organizeId)
        {
            var data = userGroupBLL.GetEntity(organizeId);

            return(Content(new RoleEntity[] { data }.ToJson()));
        }