Click here to Skip to main content
15,880,503 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 32.9K   166   13  
An inversion of control container with modules, decorators, commands, domain events and more.
namespace Example8
{
    public interface IUserStorage
    {
        User Create(string userName);
        void Save(User user);
        void Delete(User user);
    }
}

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