OOPhoto: Further Exploration Of The Facade And Controller-Model Interaction

<!--- Check to see if form was submitted. --->
<cfif arrForm[ 1 ]>
 
	<!---
		Process the form data. This time, rather than passing
		off the entire FORM data struct, we are going to let
		the "Controller" translate the View fields into the
		expected Model fields.
	--->
	<cfset ProcessForm(
		From = arrForm[ 2 ],
		To = arrForm[ 3 ]
		) />
 
</cfif>

For Cut-and-Paste