Click here to Skip to main content
15,886,718 members
Articles / Programming Languages / C#

Having fun with Griffin.Container

Rate me:
Please Sign up or sign in to vote.
5.00/5 (4 votes)
16 Aug 2012CPOL13 min read 33K   166   13  
An inversion of control container with modules, decorators, commands, domain events and more.
using System;
using System.Reflection;
using Griffin.Container;

namespace Example7
{
    internal class Program
    {
        private static void Main(string[] args)
        {
            var registrar = new ContainerRegistrar();

            // working with a "db". Let's scope everything per default.
            registrar.RegisterComponents(Lifetime.Scoped, Assembly.GetExecutingAssembly());

            var container = registrar.Build();

            using (var scope = container.CreateChildContainer())
            {
                var storage = scope.Resolve<IUserStorage>();
                storage.Create("Arne");
            }

            Console.WriteLine("Press enter to quit");
            Console.ReadLine();
        }
    }
}

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
Founder 1TCompany AB
Sweden Sweden

Comments and Discussions