Click here to Skip to main content
15,884,836 members
Articles / Desktop Programming / WPF

MVVM for Multi Platforms

Rate me:
Please Sign up or sign in to vote.
4.13/5 (6 votes)
22 Mar 2010CPOL2 min read 26.4K   354   22  
How to implement MVVM when developing a view model whose view implementation language is not certain
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace GeographicRepresentation.Interfaces
{
    /// <summary>
    /// Present data of a continent
    /// </summary>
    public interface IContinentViewModel
    {
        /// <summary>
        /// A unique identifier for the continent
        /// </summary>
        Guid Id
        {
            get;
        }

        string ContinentName
        {
            get;
            set;
        }

        int NumberOfCountries
        {
            get;
            set;
        }

        string BestCityToBeIn
        {
            get;
            set;
        }        
    }

    /// <summary>
    /// This interface presents a view model for simply viewing data over the continent, without the ability to change it
    /// </summary>
    public interface IReadOnlyContinentViewModel : IContinentViewModel, IReadOnlyViewModel
    {
        /// <summary>
        /// A list of the countries within the continent
        /// </summary>
        IList<IReadonlyCountryViewModel> Countries
        {
            get;
        }

        #region Events

        /// <summary>
        /// Event which occurs once the best city to be in changes
        /// </summary>
        event SimpleOperationDelegate OnBestCityToBeInChanged;

        #endregion
    }

    /// <summary>
    /// This interface presents a view model for adding or editing data over a continent
    /// </summary>
    public interface IEditableContinentViewModel : IContinentViewModel, IEditableObject
    {
        
    }
}

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
Israel Israel
Software Developer in a promising Clean-Tech company

Comments and Discussions