Open
Description
one view can only hold single presenter, single usecase can only do single thing . But when the view or the business logic is too complicated ,its presenter must hold many usecase. when the logic between multiple usecase is very complicated , the code of presenter must be hard to maintain.
i want to reuse multiple usecase in multiple views without single presenter.
so , what should i do? Create combined usecase in domainlayer ( maybe not do single thing ) or use multiple useCase in presenter still?
And i wonder where the result data of single usecase should be place(the data used by other usecase later, or the status data) , the presenter?