public JsonResult GestureManagement_FetchByIsActive(string data, string value)
        {
            // Calling the intermediator file and get the Boolean value
            var GestureUpdateIsActive = Facade.Admin_GestureUpdate(data, value);

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