/* #1 - Update package for your project */
package net.halcyonsolutions.cairngormchallenge.controller 
{
	
	import com.adobe.cairngorm.control.FrontController;
	/* #2 - Import your Event and Command classes */
	import net.halcyonsolutions.cairngormchallenge.command.GetProductsCommand;
	import net.halcyonsolutions.cairngormchallenge.event.GetProductsEvent;
	/* Note: This file grows with every new Event/Command pair that gets added! */
	
	public class ApplicationController extends FrontController {
		
		public function ApplicationController() {
			
			addCommand( GetProductsEvent.EVENT_GET_PRODUCTS, GetProductsCommand );	  
		
		}

	}	
}