I am working on a winforms project. I am implementing an MVP architecture. I have some processing intensive jobs running at the presenter (Reading from file system and perfo
Work should not be summoned by the presenter - add another model unit that does the work and call the work (can be via the gui) from the controller.
(Have the view raise a Work event, handled by the controller, which summons the backgroundworker and calls the view on updates/completion).