package net.halcyonsolutions.cairngormchallenge.controller 
{
	
	import com.adobe.cairngorm.control.FrontController;
	import net.halcyonsolutions.cairngormchallenge.command.GetProductsCommand;
	import net.halcyonsolutions.cairngormchallenge.event.GetProductsEvent;
	
	public class ApplicationController extends FrontController {
/*		
		public static const EVENT_GET:String = "get";
		public static const EVENT_LIST_GET:String = "listGet";
		public static const EVENT_ASSET_DELETE:String = "assetDelete";
		public static const EVENT_ASSET_DELETE_REQUEST:String = "assetDeleteRequest";
		public static const EVENT_ASSET_INSERT:String = "assetInsert";
*/		
		public function ApplicationController() {
			
			addCommand( GetProductsEvent.EVENT_GET_PRODUCTS, GetProductsCommand );	  
		
		}

	}	
}