Click here to Skip to main content
Click here to Skip to main content

Differences between MVC and MVP for Beginners

By , 23 Nov 2011
 
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 use 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)

About the Author

John T.Emmatty
Software Developer (Senior) WEPA
India India
Member
My aim is to write articles in plain English without any convoluted or periphrastic statements.

Permalink | Advertise | Privacy | Mobile
Web03 | 2.6.130516.1 | Last Updated 23 Nov 2011
Article Copyright 2011 by John T.Emmatty
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid