public JsonResult GestureManagement_InsertByIsID(string name, string url, string message, string active)
        {
            // Calling the intermediator file and get the Boolean value
            var gesman_obj = Facade.Admin_GestureAdd(name, url, message, active);

            //Returing the Json to view
            return(Json(new { Result = gesman_obj }));
        }