Esempio n. 1
0
        public ActionResult DeleteUser([FromBody] JObject postbody)
        {
            int    UID    = Convert.ToInt32(postbody["UID"]);
            string Action = postbody["Action"].ToString();
            var    DU     = adal.DeleteUserInfo(UID, Action);

            return(Ok(DU));
        }