OOPhoto - Creating Idealized Business Objects

<cffunction
	name="Delete"
	access="public"
	returntype="any"
	output="false"
	hint="I delete this comment.">
 
	<!--- Pass command to service class. --->
	<cfreturn VARIABLES.CommentService.Delete( THIS ) />
</cffunction>
 
 
<cffunction
	name="Save"
	access="public"
	returntype="any"
	output="false"
	hint="I save this comment.">
 
	<!--- Pass command to service class. --->
	<cfreturn VARIABLES.CommentService.Save( THIS ) />
</cffunction>

For Cut-and-Paste