<cffunction
name="GetDisplayName"
access="public"
returntype="string"
output="false"
hint="I take a first and last name and display in standard order.">
<cfargument
name="FirstName"
type="string"
required="true"
hint="I am the first name."
/>
<cfargument
name="LastName"
type="string"
required="true"
hint="I am the last name."
/>
<cfreturn "#ARGUMENTS.FirstName# #ARGUMENTS.LastName#" />
</cffunction>
<cffunction
name="GetInverseDisplayName"
access="public"
returntype="string"
output="false"
hint="I take a first and last name and display in inverse order.">
<cfargument
name="FirstName"
type="string"
required="true"
hint="I am the first name."
/>
<cfargument
name="LastName"
type="string"
required="true"
hint="I am the last name."
/>
<cfreturn "#ARGUMENTS.LastName#, #ARGUMENTS.FirstName#" />
</cffunction>
<cffunction
name="GetInformalDisplayName"
access="public"
returntype="string"
output="false"
hint="I take a first and last name and display an informal name.">
<cfreturn ARGUMENTS[ 1 ] />
</cffunction>