コード例 #1
0
        public ActionResult NotificationMessage(long id)
        {
            var message = _notificationMessageService.GetNotification(id);

            message.Notification = null;             // we don't need parent entity in response
            return(Json(message, JsonRequestBehavior.AllowGet));
        }