Namespace Naming convention for data classes not stored in database -
i'm using framework uses active record pattern, therefore classes represent row in table inside models
namespace. these classes have 'helper' classes represent data not stored row, json data inside row. example array of address
objects (where it's absolutely no search needed on these objects) address
class contains properties such postcode / house number / country etc. array of price
contains currency / price / date , again no searching necessary - no need separate table.
what / or correct term namespace such classes not models? don't want use namespace helpers
.
Comments
Post a Comment