示例#1
0
        public ActionResult GetUserList([FromBody] JObject postbody)
        {
            List <UserDetails> readud = new List <UserDetails>();
            string             Action = postbody["Action"].ToString();

            readud = adal.GetAllUser(Action);
            return(Ok(readud));
        }