Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

8
  • Thanks! Perhaps I should be a bit clearer. Which component is responsible for communication between layers? Specifically, between the presentation and the business layers? In my case, is that the presenter? the model? Commented Sep 13, 2018 at 15:45
  • The Model contains the business logic. That model can be architected any way you want; MVC doesn't concern itself at all with that. Commented Sep 13, 2018 at 15:48
  • So let's say I press a button on the form, what would be the sequence of method calls until repository.InsertToDB()? Commented Sep 13, 2018 at 15:59
  • That would depend on how your Model is architected. There are many ways to achieve such architecture. Commented Sep 13, 2018 at 16:46
  • 1
    See my answer update. Commented Sep 13, 2018 at 16:55