Implement MVP(Model-View-Presenter) architecture in .NET app using C#.
How is each layer implemented in this project?
- Model: its source code lays under ./data folder. All users data will be saved/loaded using json files.
Presenter
layer interacts with it viaMessageRepository
instance. - View: A passive view which currently is a Console screen.
- Presenter: Wire up Model and View together.
Firstly, clone this project into your local machine.
git clone https://github.com/aromajoin/mvp-in-csharp.git
dotnet run
dotnet xunit
This project is under APACHE license. See the LICENSE file for details.