Core.Model.Customer.GetShippedOrders C# (CSharp) Method

GetShippedOrders() public method

public GetShippedOrders ( ) : IEnumerable
return IEnumerable
        public IEnumerable<Order> GetShippedOrders()
        {
            return Orders.Where(x => x.Status == OrderStatus.Shipped);
        }