Click here to Skip to main content
15,892,537 members
Articles / Desktop Programming / Windows Forms

Differences between MVC and MVP for Beginners

Rate me:
Please Sign up or sign in to vote.
4.89/5 (42 votes)
23 Nov 2011CPOL7 min read 268.3K   3K   130  
This article aims to describe MVC and MVP in simple terms
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace MVPTester
{
    class Controller
    {

        IViewBase _view = null;
        ConcreteModel _model = new ConcreteModel();
        public Controller(IViewBase view)
        {

            _view = view;
            _model.ModelChanged += new EventHandler(_model_ModelChanged);
            

        }

        void _model_ModelChanged(object sender, EventArgs e)
        {
            if (_view == null)
                return;

          
                _view.ChangedState(sender, e);
           
        }

        public void Save()
        {
           
            if (!_model.IsEntryExisting(_view.UserName))
            {
                _model.Save(_view.UserName, _view.Email);

            }
        }


    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) WEPA
India India
My aim is to write articles in plain English without any convoluted or periphrastic statements.

Comments and Discussions