public JsonResult DeleteUserGroupProtectedDocumentMapping(int userGroupId, int protectedDocumentId)
        {
            var response = _userGroupService.DeleteUserGroupProtectedDocumentMapping(userGroupId, protectedDocumentId);

            return(Json(response));
        }