Click here to Skip to main content
15,895,709 members
Articles / Programming Languages / C#

Building an MVP Framework for .NET. Part 4: Strongly Typed Associations

Rate me:
Please Sign up or sign in to vote.
4.86/5 (4 votes)
25 Apr 2008Ms-PL2 min read 27.5K   339   31  
In this article we continue developing a Model-View-Presenter framework for .NET platform. The new features we are implementing here are strongly typed asscoiations between controllers, views and tasks for higher convenience and type safety.
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using ASPNET_MVC_Store.Model;
using MVCSharp.Webforms;
using ASPNET_MVC_Store.ApplicationLogic;

namespace ASPNET_MVC_Store.Presentation
{
    public partial class EditProduct : WebFormView<EditProductController>,
                                       IEditProductView
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            CategoryDropDownList.DataSource = NorthwindDataSet.Instance.Categories;
            SupplierDropDownList.DataSource = NorthwindDataSet.Instance.Suppliers;
            DataBind();
        }

        public string ProductName
        {
            get { return NameTextBox.Text; }
            set { ProductNameLabel.Text = NameTextBox.Text = value; }
        }

        public NorthwindDataSet.CategoriesRow Category
        {
            get { return NorthwindDataSet.Instance.Categories[
                            CategoryDropDownList.SelectedIndex]; }
            set
            {
                // Drop down list control has a strange feature of ignoring
                // the posted back text after it was assigned. That is why
                // we are not assigning the text if the page was posted back.
                if (!IsPostBack) CategoryDropDownList.Text = value.CategoryName;
            }
        }

        public NorthwindDataSet.SuppliersRow Supplier
        {
            get { return NorthwindDataSet.Instance.Suppliers[
                            SupplierDropDownList.SelectedIndex]; }
            set
            {
                // Drop down list control has a strange feature of ignoring
                // the posted back text after it was assigned. That is why
                // we are not assigning the text if the page was posted back.
                if (!IsPostBack) SupplierDropDownList.Text = value.CompanyName;
            }
        }

        public decimal UnitPrice
        {
            get { return Convert.ToDecimal(UnitPriceTextBox.Text); }
            set { UnitPriceTextBox.Text = value.ToString(); }
        }

        protected void CommitButton_Click(object sender, EventArgs e)
        {
            Controller.Commit();
        }
    }
}

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
Team Leader
Russian Federation Russian Federation
Oleg Zhukov, born and living in Russia is Lead Engineer and Project Manager in a company which provides business software solutions. He has graduated from Moscow Institute of Physics and Technology (MIPT) (department of system programming) and has got a M.S. degree in applied physics and mathematics. His research and development work concerns architectural patterns, domain-driven development and systems analysis. Being the adherent of agile methods he applies them extensively in the projects managed by him.

Comments and Discussions