I am searching for a design solution to the problem where I have 2 classes which depend on each other such that I have class Customer
and class Order
where:
Customer
can have a list of orders (1-to-N) and an Order
has a designated customer (1-to-1).
What is the best practice to break these kind of dependencies?
Assuming you have a dependency as follows:
You could create a third class to break the dependency:
Now you can drop orders from the Customer class, and customer from the Order class. Or am I misunderstanding your issue?