Will this use of List <T> be a miracle or a mess
I want to send meetings to representatives (I spare you the details).
I need to have for each representative a list of the appointments that he performs. I also need the second step to be a list of possible repetitions for each meeting.
I want to compile my data only once. What if I have something like this:
class Rep
{
int repNumber;
List<Appointment> availableApps;
}
class Appointment
{
int appointmentNumber;
List<Rep> availableReps;
}
Am I running after trouble? It seems wonderful to me, but I see that it can create an endless circle of links.
What do you think? Thanks you
+3