Click here to Skip to main content
15,891,621 members
Articles / Programming Languages / C#

Building an MVP Framework for .NET. Part 2: Implementing Core Functionality

Rate me:
Please Sign up or sign in to vote.
4.82/5 (25 votes)
11 Feb 2008CPOL12 min read 90.3K   1.3K   89  
Basing on the concepts introduced in the first part, this article proceeds to implement the core MVP Framework funtionality.
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 System.Collections.Generic;
using MVCSharp.Webforms;
using MVCSharp.Examples.Basics.ApplicationLogic;
using MVCSharp.Examples.Basics.Model;

public partial class Orders : WebFormView, IOrdersView
{
    public void SetOrdersList(List<Order> orders)
    {
        OrdersGridView.DataSource = orders;
    }

    public Order CurrentOrder
    {
        get
        {
            List<Order> orders = OrdersGridView.DataSource as List<Order>;
            if (OrdersGridView.SelectedIndex >= orders.Count)
                OrdersGridView.SelectedIndex = orders.Count - 1;
            return orders[OrdersGridView.SelectedIndex] as Order;
        }
    }

    public void SetOperationsEnabling(bool AcceptIsEnabled, bool ShipIsEnabled, bool CancelIsEnabled)
    {
        AcceptOrderBtn.Enabled = AcceptIsEnabled;
        ShipOrderBtn.Enabled = ShipIsEnabled;
        CancelOrderBtn.Enabled = CancelIsEnabled;
    }

    protected void AcceptOrderBtn_Click(object sender, EventArgs e)
    {
        (Controller as OrdersController).AcceptOrder();
    }

    protected void ShipOrderBtn_Click(object sender, EventArgs e)
    {
        (Controller as OrdersController).ShipOrder();
    }

    protected void CancelOrderBtn_Click(object sender, EventArgs e)
    {
        (Controller as OrdersController).CancelOrder();
    }

    protected void OrdersGridView_SelectedIndexChanged(object sender, EventArgs e)
    {
        (Controller as OrdersController).CurrentOrderChanged();
    }

    protected void Page_PreRender(object sender, EventArgs e)
    {
        DataBind();
    }

    protected void ShowCustomersButton_Click(object sender, EventArgs e)
    {
        (Controller as OrdersController).ShowCustomers();
    }
}

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
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