I always model just entity class. If I want to designing all my classes like business classes and boundary classes ,how I can separate them and how I can show relationships between these groups of classes.For example, I want to model a small application that end user can create a formula in and system must save it and calculate it. So I have a set of classes for holding formula (entity classes), and a set of classes that interpreter formula and calculate it and set of classes that manage interface.
In which way I can categorized them and how?
How can I make a relation between these sets?
How can I model layer of application?