Was just wondering, whilst im getting my head around model
injection.....in the meantime, is it acceptable to place model calls
in the constructor area of a cfc..
For example...
<cfcomponent name="artists" extends="coldbox.system.eventhandler"
output="false" hint="all artist functions for site" >
Few things, Yes, they are acceptable, but remember that then the Artist will be in the variables scope of the handler, and the handler is persisted by default. Therfore, you will have thread safety issues if that object holds state. If it is a stateless object then that would be fine.
However, by you creating the object, you have less control and more proned to errors when dealing with object dependencies. For example, that artist needs a datasource, etc. I would suggest you either let coldbox manage your model objects via model integration (ioc by coldbox) or use an external ioc framework like coldspring/lightwire.
This will give you more control on your object creations and you can just autowire them into your handlers. I suggest reading the model integration guide.