Click here to Skip to main content
15,881,812 members
Articles / Desktop Programming / XAML

A Pluggable Architecture for Building Silverlight Applications with MVVM

Rate me:
Please Sign up or sign in to vote.
4.71/5 (23 votes)
6 Jul 2011CPOL7 min read 144.7K   2.2K   90  
This article describes building a sample Silverlight application with the MVVM Light toolkit, WCF RIA Services, and a pluggable application architecture using MEF.
using System;
using System.ComponentModel;
using GalaSoft.MvvmLight;
using IssueVision.Data.Web;

namespace IssueVision.Common
{
    public interface IIssueVisionModel : INotifyPropertyChanged, ICleanup
    {
        void GetIssueTypesAsync();
        event EventHandler<EntityResultsArgs<IssueType>> GetIssueTypesComplete;
        void GetPlatformsAsync();
        event EventHandler<EntityResultsArgs<Platform>> GetPlatformsComplete;
        void GetResolutionsAsync();
        event EventHandler<EntityResultsArgs<Resolution>> GetResolutionsComplete;
        void GetStatusesAsync();
        event EventHandler<EntityResultsArgs<Status>> GetStatusesComplete;
        void GetSubStatusesAsync();
        event EventHandler<EntityResultsArgs<SubStatus>> GetSubStatusesComplete;
        void GetUsersAsync();
        event EventHandler<EntityResultsArgs<User>> GetUsersComplete;
        void GetCurrentUserAsync();
        event EventHandler<EntityResultsArgs<User>> GetCurrentUserComplete;
        void GetSecurityQuestionsAsync();
        event EventHandler<EntityResultsArgs<SecurityQuestion>> GetSecurityQuestionsComplete;
        void GetMyIssuesAsync();
        event EventHandler<EntityResultsArgs<Issue>> GetMyIssuesComplete;
        void GetAllIssuesAsync();
        event EventHandler<EntityResultsArgs<Issue>> GetAllIssuesComplete;
        void GetAllUnresolvedIssuesAsync();
        event EventHandler<EntityResultsArgs<Issue>> GetAllUnresolvedIssuesComplete;

        void GetActiveBugCountByMonthAsync(Int32 numberOfMonth);
        event EventHandler<InvokeOperationEventArgs> GetActiveBugCountByMonthComplete;
        void GetResolvedBugCountByMonthAsync(Int32 numberOfMonth);
        event EventHandler<InvokeOperationEventArgs> GetResolvedBugCountByMonthComplete;
        void GetActiveBugCountByPriorityAsync();
        event EventHandler<InvokeOperationEventArgs> GetActiveBugCountByPriorityComplete;

        Issue AddNewIssue();

        void RemoveAttribute(IssueVision.Data.Web.Attribute attribute);
        void RemoveFile(IssueVision.Data.Web.File file);

        void SaveChangesAsync();
        event EventHandler<SubmitOperationEventArgs> SaveChangesComplete;
        void RejectChanges();

        Boolean HasChanges { get; }
        Boolean IsBusy { get; }
    }
}

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 (Senior)
United States United States
Weidong has been an information system professional since 1990. He has a Master's degree in Computer Science, and is currently a MCSD .NET

Comments and Discussions