コード例 #1
0
 public TestMe(ISomethingFactory somethingFactory)
 {
     _somethingFactory = somethingFactory;
 }
コード例 #2
0
 public SomethingElseCreateInteractor(ISomethingFactory somethingFactory, ISomethingElseFactory somethingElseFactory, ISomethingElsePersistence persistence)
 {
     this.somethingFactory     = somethingFactory;
     this.somethingElseFactory = somethingElseFactory;
     this.persistence          = persistence;
 }
コード例 #3
0
 public SomethingCreateInteractor(ISomethingFactory factory, ISomethingPersistence persistence)
 {
     this.factory     = factory;
     this.persistence = persistence;
 }