Which is the better approach?
1.) have the command object be operated on inside the controller via onSubmit
2.) Have the command object be operated on by some private method in the controller (separated out)
3.) Have a interface that operates on the command object.
Example: BlogService
would have createBlog(BlogCommand);
What are the advantagaes and disadvantage of each.

