AsgQuizzes.OrderController.GetById C# (CSharp) 메소드

GetById() 공개 메소드

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