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

Take MVC to the Next Level in .NET

Rate me:
Please Sign up or sign in to vote.
4.62/5 (11 votes)
30 Apr 2013GPL315 min read 73.1K   858   75  
How to quickly build reusable and flexible WPF, Silverlight, or ASP.NET applications with the powerful Xomega Framework using the best MVVM principles.
// Copyright (c) 2010-2012 Xomega.Net. All rights reserved.

using System;

namespace Xomega.Framework.Lookup
{
    /// <summary>
    /// An interface that allows providing lookup caches for a give cache type.
    /// </summary>
    public interface ILookupCacheProvider
    {
        /// <summary>
        /// Gets an instance of a lookup cache of the specified type.
        /// Typically either <see cref="LookupCache.Global"/> or <see cref="LookupCache.User"/> constants are used as a cache type.
        /// </summary>
        /// <param name="type">Cache type.</param>
        /// <returns>An instance of a lookup cache of the specified type or <c>null</c> if no cache can be found.</returns>
        LookupCache GetLookupCache(string type);
    }

    /// <summary>
    /// A default implementation of the <c>ILookupCacheProvider</c> interface.
    /// For any cache type it returns the same global instance of the lookup cache.
    /// </summary>
    public class SingletonLookupCacheProvider : ILookupCacheProvider
    {
        /// <summary>
        /// The global instance of the lookup cache provider.
        /// </summary>
        private static LookupCache globalInstance;

        /// <summary>
        /// Gets the global instance of a lookup cache irrespective of the specified type.
        /// </summary>
        /// <param name="type">Cache type.</param>
        /// <returns>The global instance of a lookup cache.</returns>
        public LookupCache GetLookupCache(string type)
        {
            if (globalInstance == null) globalInstance = new LookupCache();
            return globalInstance;
        }
    }
}

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 GNU General Public License (GPLv3)


Written By
Architect Xomega.Net
United States United States
Xomega Team is striving to increase productivity and development quality by utilizing Model Driven Development coupled with Code Generation and the best design practices for application development.
We provide MDD tools, code generators and frameworks for Visual Studio and .Net development.
Visit us at http://www.xomega.net
This is a Organisation

1 members

Comments and Discussions