Esempio n. 1
0
        public ActionResult ConfirmDelivery(int invId, int token)
        {
            Transporter thisUser = (Transporter)Session["loggedInUser"];

            return(Json(transporterService.ConfirmDelivery(thisUser.Id, invId, token), JsonRequestBehavior.AllowGet));
        }