java Programming Glossary: carcomponenttype
Refactoring domain logic that accesses repositories in a legacy system http://stackoverflow.com/questions/1264944/refactoring-domain-logic-that-accesses-repositories-in-a-legacy-system has the following entity classses Car CarType CarComponent CarComponentType . For each of these there is a separate repository. There is.. logic. I need to implement a method that determines if a CarComponentType can be discontinued by the vendor. The logic is as follows a.. this in a service class. public boolean canBeDiscontinued CarComponentType carComponentType List Car cars carRepository.getCarsWithComponent..
|