Let's say you are using the virtual services and base ORM service but you find that they do not complete your requirements, or you need some custom methods or change functionality. Then you will be building concrete services that inherit from the base or virtual entity services. This is the very purpose of these support classes as most of the time you will have custom requirements and your own style of coding.
Here is a custom AuthorService we created:
AuthorService.cfc
/*** Service to handle author operations.*/component extends="cborm.models.VirtualEntityService" accessors="true" singleton{// User hashing type property name="hashType"; AuthorService functioninit(){// init it via virtual service layersuper.init( entityName="bbAuthor", useQueryCaching=true );setHashType( "SHA-256" );returnthis; }functionsearch(criteria){var params = {criteria="%#arguments.criteria#%"}; var r = executeQuery(query="from bbAuthor where firstName like :criteria OR lastName like :criteria OR email like :criteria",params=params,asQuery=false);
return r; }functionsaveAuthor(author,passwordChange=false){// hash password if new authorif( !arguments.author.isLoaded() OR arguments.passwordChange ){arguments.author.setPassword( hash(arguments.author.getPassword(),getHashType()) ); }// save the authorsave( author ); } boolean functionusernameFound(required username){var args = {"username" = arguments.username}; return ( countWhere(argumentCollection=args) GT 0 ); }}
Then you can just inject your concrete service in your handlers, or other models like any other normal model object.