Click here to Skip to main content
15,891,828 members
Articles / Web Development / ASP.NET

Presentation Model and Dependency Injection

Rate me:
Please Sign up or sign in to vote.
4.81/5 (10 votes)
26 Apr 2009Ms-PL5 min read 46.6K   434   65  
ASP.NET MVVM provides a framework to implement the Presentation Model pattern, a.k.a. the Model-View-ViewModel pattern in ASP.NET projects. Developers can take advantages of Dependency Injection and Event Broker to write concise, elegant and business focused code.
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Web.UI.WebControls;
using Demo.DataModel;
using Demo.Web.Mvvm;

namespace Demo.WebApp
{
    public partial class CustomerList : System.Web.UI.UserControl
    {
        public bool UsePopup { get; set; }

        [Inject]
        public ICustomerList controller { get; set;}

        protected void Page_Load(object sender, EventArgs e)
        {
        }

        [EventSubscription]
        void OnCustomerListChanged(object sender, EventArgs e)
        {
            try
            {
                CustomerGridView.DataBind();
            }
            catch (Exception ex)
            {
                ErrorHandler.HandleException(this, ex);
            }            
        }

        protected void CustomerListDataSource_ObjectCreating(object sender, ObjectDataSourceEventArgs e)
        {
            e.ObjectInstance = controller;
        }

        protected void CustomerGridView_SelectedIndexChanged(object sender, EventArgs e)
        {
            controller.SelectCustomer(CustomerGridView.SelectedDataKey.Value.ToString());
        }

        protected void btnNew_Click(object sender, EventArgs e)
        {
            controller.NewCustomer();
        }
    }
}

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 Microsoft Public License (Ms-PL)


Written By
Architect
Canada Canada
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions