Ejemplo n.º 1
0
        public ActionResult GetOrderStatus(int orderId)
        {
            CakesPosRepository cpr = new CakesPosRepository(_connectionString);

            return(Json(cpr.GetLatestStatusById(orderId), JsonRequestBehavior.AllowGet));
        }