I've currently building a medium-large size application in Flex using Cairngorm. I've already decided not to use 'delegates'. Instead, I'm just updating the 'model' from within 'commands'. Now I'm seeing a pattern where each 'event' I create is just a container for a data structure to a 'command'. Also, it seems the mapping of 'events' is one-to-one for 'commands'.
So, my question is, why not just do away with the 'events' and have views call 'command.execute()'? Someone talk me out of this... thanks, Mike

