For a long operation that will be executed in presenter, where to set the wait cursor?
- in View? the view shouldn't know too much about business logic, it is passive.
- in presenter? seems odd in presenter to call UI code.
- add method to View interface, like SetWait(bool), and call it in presenter?
So what do you think?