diff --git a/MVPLearning/TestingArea/ModelProperties/ModelPropertiesPresenter.cs b/MVPLearning/TestingArea/ModelProperties/ModelPropertiesPresenter.cs index 68e10e2..e21e3e8 100644 --- a/MVPLearning/TestingArea/ModelProperties/ModelPropertiesPresenter.cs +++ b/MVPLearning/TestingArea/ModelProperties/ModelPropertiesPresenter.cs @@ -14,6 +14,7 @@ namespace MVPLearning.TestingArea.ModelProperties { _view = view; _view.ButtonClick += ButtonClick; + _view.LoadData(new() { FirstName = "Mary" }); if (_view is Form form) { form.Show(); } }