public ResolveByCreatingLazyStrategy(DummyValueCreationSession session)
 {
     this.Session = session;
 }
 public ResolveByInstantiatingClassUsingDummyValuesAsConstructorArgumentsStrategy(DummyValueCreationSession session)
 {
     this.Session = session;
 }
 public ResolveByCreatingFakeStrategy(IFakeObjectCreator fakeCreator, DummyValueCreationSession session)
 {
     this.FakeCreator = fakeCreator;
     this.Session     = session;
 }