AsgQuizzes.OrderController.GetById C# (CSharp) Méthode

GetById() public méthode

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