Click here to Skip to main content
15,894,825 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.5K   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
{
    interface ICommands
    {
         void Execute();
         Model CurrentModel { get; set; }
    }


    public class SaveCommand : ICommands
    {
        string _username = "";
        string _email = "";
        //Model _model;
        public Model CurrentModel { get; set; }
        //public Model CurrentModel
        //{
        //    get
        //    {
        //        return _model;
        //    }

        //    set
        //    {
        //        _model = value;
        //    }
        //}
      

        public SaveCommand(string username, string email)
        {
            _username = username;
            _email = email;
        }

        public void Execute()
        {

            CurrentModel.Save(_username,_email);
        }

    }




    class Presenter
    {
        IStudentModel _model;
        IStudentView _view;

        public Presenter(IStudentModel model, IStudentView view)
        {
            _model = model;
            _view = view;
           
        }
        public void Save(string username, string email)
        {
            
            _model.Save(username, email);
        }

        public void Execute(ICommands command)
        {
            command.CurrentModel = (Model)_model;
            command.Execute();
        }

        public bool IsEntryExisting(string username)
        {
            return _model.IsEntryExisting(username);
        
        }
    }
}

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