Given the below code snippet - is the Customer Property Getting or Setting here?
I generally find it uneasy to grasp as to whether a Property is Getting data ready for returning or Setting the data...
order.Customer = _customerDao.GetCustomerByOrder(order.OrderId);
Thanks