Beispiel #1
0
        public ActionResult <Order> Get(int id)
        {
            var order = _orderCtx.Get(id);

            if (order == null)
            {
                return(NotFound());
            }
            return(order);
        }