Click here to Skip to main content
15,892,746 members
Articles / Desktop Programming / WPF

MVVM - Demo

Rate me:
Please Sign up or sign in to vote.
4.43/5 (35 votes)
6 Aug 2012CPOL4 min read 143.7K   12.1K   49  
If you are new to MVVM this is the place to start. Explains MVVM through an example.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Input;
using MVVMSample.BusinessLogicLayer;
using MVVMSample.PresentationLayer.Models;
using System.Windows;

namespace MVVMSample.PresentationLayer.Commands
{
    /// <summary>
    /// 
    /// </summary>
    public class AddPatientCommand : ICommand
    {
        #region ICommand Members

        /// <summary>
        /// 
        /// </summary>
        /// <param name="parameter"></param>
        /// <returns></returns>
        public bool CanExecute(object parameter)
        {
            return true;
        }

        public event EventHandler CanExecuteChanged;

        /// <summary>
        /// 
        /// </summary>
        /// <param name="parameter"></param>
        public void Execute(object parameter)
        {
            PatientManager patientManager = new PatientManager();
            PatientDetailModel patientDetail = parameter as PatientDetailModel;

            if (patientManager.Add(new PatientDetailModel { Id=patientDetail.Id, Name=patientDetail.Name }))
                MessageBox.Show("Patient Add Successful !");
            else
                MessageBox.Show("Patient with this ID already exists !");
        }

        #endregion
    }
}

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 Wipro Technologies
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions