Click here to Skip to main content
15,892,059 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.
//===========================================
// MVC# Framework | www.MVCSharp.org        |
// ------------------------------------------
// Copyright (C) 2008 www.MVCSharp.org      |
// All rights reserved.                     |
//===========================================

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

namespace MVCSharp.Core
{
    #region Documentation
    /// <summary>
    /// Generic extension of the <see cref="IController"/> interface.
    /// Has strongly typed generic associations to the task and the
    /// view. Therefore no typecasting is required when accessing the
    /// associated task or view.
    /// <para>Istead of implementing this interface manually you
    /// might better use the generic base controller class -
    /// <see cref="ControllerBase{TTask, TView}"/></para>
    /// </summary>
    /// <remarks>The framework knows nothing about the generic types
    /// and deals only their non-generic versions. Generic types serve
    /// only for user convenience: to provide type-safety and reduce
    /// the amount of typecasts.</remarks>
    /// <typeparam name="TTask">Specifies the expected type of the
    /// associated task. Must be a subtype of <see cref="ITask"/>.
    /// </typeparam>
    /// <typeparam name="TView">Specifies the expected type of the
    /// associated view.
    /// </typeparam>
    /// <seealso cref="ControllerBase{TTask, TView}"/>
    #endregion
    public interface IController<TTask, TView> : IController where TTask : ITask
    {
        #region Documentation
        /// <summary>
        /// Gets or sets the associated task of the generic parameter
        /// type TTask.
        /// </summary>
        #endregion
        new TTask Task
        {
            get;
            set;
        }

        #region Documentation
        /// <summary>
        /// Gets or sets the associated view of the generic parameter
        /// type TView.
        /// </summary>
        #endregion
        new TView View
        {
            get;
            set;
        }
    }
}

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