OOPhoto - No More Validation In The Controller

<cffunction
	name="Validate"
	access="public"
	returntype="struct"
	output="false"
	hint="I validate the properties of this comment and place error messages into the given struct.">
 
	<!--- Define arguments. --->
	<cfargument
		name="Errors"
		type="struct"
		required="false"
		default="#StructNew()#"
		hint="I am the struct into which erorrs will be placed."
		/>
 
	<!--- Turn the validation over to the service. --->
	<cfreturn VARIABLES.CommentService.Validate(
		THIS,
		ARGUMENTS.Errors
		) />
</cffunction>

For Cut-and-Paste