Given the following classes:
class Abc {
String course
Date startDate
}
Class Xyz {
Abc abc
Date xyzInDate
}
The end user will input provide the course and startDate and I need to find all Abc classes that match the course and the startDate matches the xyzInDate from the associated Xyz class.