예제 #1
0
        public ActionResult GetPassengerConfirmInfo(int groupId, int routeId)
        {
            var token = GetUserToken();

            if (string.IsNullOrEmpty(token))
            {
                return(Json(new { status = "UnAuthorized" }, JsonRequestBehavior.AllowGet));
            }
            var res = _routeManager.GetPassengerConfirmInfo(token, groupId, routeId);

            return(Json(res, JsonRequestBehavior.AllowGet));
        }