1. <!--- updateUser --->
  2. <cffunction name="updateUser" hint="I ask Transfer to update a User." displayname="Update Users" access="public" returntype="any" output="false">
  3. <cfargument name="ID" hint="I am the ID of the User to update.<br />I am required." />
  4. <cfargument name="name" hint="I am the Name of the User to update.<br />I am required." />
  5. <cfargument name="email" hint="I am the Email of the User to update.<br />I am required." />
  6. <!--- do some tranfer stuff here --->
  7. <cfreturn "yes" />
  8. </cffunction>