Click here to Skip to main content
15,885,278 members
Articles / Desktop Programming / WPF

Presentation Model (MVVM) Good Practices

Rate me:
Please Sign up or sign in to vote.
4.81/5 (13 votes)
11 May 2010CPOL16 min read 67.8K   944   76  
Showing some good practices that can be applied to the Presentation Model/MVVM pattern.
using System;
using System.Collections.Generic;
using System.Text;
using App.Core;
using System.Threading;
using System.ComponentModel;

namespace App.Data
{
    public class DummyDao<T> : IDao<T>
    {
        List<T> _storage = new List<T>();

        #region IDao<T> Members

        public void SaveOrUpdate(T item)
        {
            if (!_storage.Contains(item))
            { 
                _storage.Add(item);
                OnChange(item, ListChangedType.ItemAdded);
            }
            else
                OnChange(item, ListChangedType.ItemChanged);
        }

        public void Remove(T item)
        {
            _storage.Remove(item);
            OnChange(item, ListChangedType.ItemDeleted);
        }

        public T GetByKey(int key) 
        {
            return _storage[key];
        }

        public IList<T> SelectAll()
        {
            return _storage;
        }

        public event ListChangedEventHandler Changed;

        protected void OnChange(T item, ListChangedType changeType)
        {
            if (Changed != null)
                Changed(item, new ListChangedEventArgs(changeType, _storage.IndexOf(item)));
        }

        #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
Brazil Brazil
Software developer specialized in the .NET framework

Comments and Discussions