Click here to Skip to main content
15,893,622 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.4K   1.3K   89  
Basing on the concepts introduced in the first part, this article proceeds to implement the core MVP Framework funtionality.
//===========================================
// MVC# Framework | www.MVCSharp.org        |
// ------------------------------------------
// Copyright (C) 2008 www.MVCSharp.org      |
// All rights reserved.                     |
//===========================================

using System;
using System.Text;
using MVCSharp.Core.Tasks;
using MVCSharp.Core.Views;

namespace MVCSharp.Core
{
    #region Documentation
    /// <summary>
    /// Simple <see cref="IController"/> interface implementation
    /// with backing fields. Members are marked as virtual    
    /// so it is possible to override them in subclasses.
    /// </summary>
    /// <example>ControllerBase class prevents users from implementing
    /// <see cref="IController"/> manually, yet allowing to override IController members:
    /// <code>
    /// class MyController : ControllerBase
    /// {
    ///     public void MyOperation()
    ///     {
    ///         // Do something
    ///     }
    /// 
    ///     public override IView View
    ///     {
    ///         get { return base.View; }
    ///         set
    ///         {
    ///             base.View = value;
    ///             // Do view initialization
    ///         }
    ///     }
    /// }
    /// </code>
    /// </example>
    /// <seealso cref="IController"/>
    #endregion
    public class ControllerBase : IController
    {
        private ITask task;
        private IView view;

        #region Documentation
        /// <summary>
        /// Simple <see cref="IController.Task">IController.Task</see> implementation
        /// with backing field. Can be overriden in subclasses.
        /// </summary>
        #endregion
        public virtual ITask Task
        {
            get { return task; }
            set { task = value; }
        }

        #region Documentation
        /// <summary>
        /// Simple <see cref="IController.View">IController.View</see> implementation
        /// with backing field. Can be overriden in subclasses.
        /// </summary>
        #endregion
        public virtual IView View
        {
            get { return view; }
            set { view = value; }
        }
    }
}

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