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.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace MVPTester
{

    public partial class MVPView : Form,IStudentView
    {
        Presenter _presenter;
        public MVPView()
        {
            InitializeComponent();

            _presenter = new Presenter(new Model(), this);
        }

        private void button1_Click(object sender, EventArgs e)
        
        {
          

            bool b = _presenter.IsEntryExisting(UserName);
            if (!b)
                _presenter.Save(UserName, Email);
                
            else
                MessageBox.Show("Entry already existing.");
        }


        public string UserName
        {
            get { return this.txtName.Text; }
            set { this.txtName.Text = value; }
        }

        public string Email
        {
            get { return this.txtEmail.Text; }
            set { this.txtEmail.Text = value; }
        }

    }
}

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.130523.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