Skip to content

Instantly share code, notes, and snippets.

@carlosagsmendes
carlosagsmendes / Funq_Can_AutoWire.cs
Created December 7, 2012 22:02 — forked from mythz/Funq_Can_AutoWire.cs
StackOverflow Funq IOC code example
//Had to make these types from the example since the example didn't compile and they weren't supplied
public interface IFoo { }
public interface IFoo2 { }
public interface IBar { }
public class Foo : IFoo { }
public class Bar : IBar { }
public class Test
{
public IFoo Foo { get; set; }