Click here to Skip to main content
15,891,184 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.2K   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;
using System.ComponentModel;

namespace MVPTester
{
    public abstract class ModelBase
    {
        public abstract void Save(string username, string email);
        public abstract string Get(string username);
        public abstract bool ValidateEmail(string email);
        public abstract bool IsEntryExisting(string username);
       
        public event EventHandler ModelChanged;

        protected void Fire_ModelChanged(object sender, EventArgs e)
        {

            ModelChanged(sender, e);
        }

        
    }
}

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