Exemplo n.º 1
0
 public SomethingReadInteractor(ISomethingPersistence persistence)
 {
     this.persistence = persistence;
 }
 public SomethingCreateInteractor(ISomethingFactory factory, ISomethingPersistence persistence)
 {
     this.factory     = factory;
     this.persistence = persistence;
 }