예제 #1
0
        public ActionResult DeleteLocation([FromBody] JObject postbody)
        {
            int    LocationID = Convert.ToInt32(postbody["LocationID"]);
            string Action     = postbody["Action"].ToString();
            var    DL         = adal.DeleteLocationMaster(LocationID, Action);

            return(Ok(DL));
        }