What do the entity, control and interface classes refer to?

1

How far I have understood the entity classes are those that are used to model the data, for example create a Person class that groups all its attributes. The control classes are more than responsible for performing what the user wants. The interface classes are the ones that take care of the views, that is, what the user sees.

    
asked by FrEqDe 27.02.2017 в 00:55
source

1 answer

2

That's right, if you want to see it in another way: He modeled, it is effectively referring to the data, the view is all that your user interacts with and the controller is a "communication" between your view and your model as well as serving as a "backend" of your app.

    
answered by 27.02.2017 / 01:49
source