My school teacher and me are arguing about how to write the correct cardinality to a relation between two classes:
Customer ----places->---- Order
So the exercise tells me, that one customer has 0 - x orders and one order always belongs to one specific customer. So my idea was:
Customer -1---places->---*- Order
My teachers solution:
Customer -1..*---places->---*- Order
So, what do you think about it? I hope, I'm right :)