If I have this interface:
public interface IFoo : IDisposable
{
int PropA {get; set;}
int PropB {get; set;}
}
And a class:
public class Foo : IFoo
{
public int PropA {get; set;}
public int PropB {get; set;}
public void Dispose()
{
Dispose();
GC.SuppressFinalize(this);
}
}
Shouldn't this work without a 'Cannot Implicitly Convert' error?
private Context context = new Context();
private GenericRepository<IFoo> FooRepo;
public GenericRepository<IFoo> Article
{
get
{
if (this.FooRepo == null)
{
this.FooRepo = new GenericRepository<Foo>(context);
}
return FooRepo;
}
}
I thought I had it right, what is the correct way to do this?
this.FooRepo = new GenericRepository<IFoo>(context);– Robert Harvey♦ Dec 13 '12 at 18:19