AsgQuizzes.OrderController.GetById C# (CSharp) Method

GetById() public method

public GetById ( System.Guid orderId ) : Order
orderId System.Guid
return Order
        public Order GetById(Guid orderId)
        {
            return _repo.ReadOrder(orderId);
        }