Steven Robbins is sharing code with you

Bitbucket is a code hosting site. Unlimited public and private repositories. Free for small teams.

Don't show this again

grumpydev / TinyIoC

An easy to use, hassle free, Inversion of Control Container for small projects and beginners alike.

Clone this repository (size: 858.0 KB): HTTPS / SSH
hg clone https://bitbucket.org/grumpydev/tinyioc
hg clone ssh://hg@bitbucket.org/grumpydev/tinyioc

TinyIoC / TinyIoC.Tests.ExternalTypes / ExternalTestClasses.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace TinyIoC.Tests.ExternalTypes
{
    public interface IExternalTestInterface
    {
    }

    public class ExternalTestClass : IExternalTestInterface
    {
    }

    public interface IExternalTestInterface2
    {
    }

    class ExternalTestClassInternal : IExternalTestInterface2
    {
    }
}