6
For example, let’s assume I have a string manipulation class called strman
which I will use to store operations to work with strings, already in the models folder I own usuario
and usuarioDAO
, in the case of the class strman
, it can stay together with the classes I have in the models?
And if it’s really a model and it can stay in this folder, how can I arrange so it doesn’t mix with the logic of the application? (I say the main logic that are classes that contain business rules, not utilities like string handlers)
Related: Main purpose of utility classes
– rray