コード例 #1
0
ファイル: VehicleFacade.cs プロジェクト: evak2979/DPs
 public VehicleFacade(ISomeOtherClass someOtherClass)
 {
     _someOtherClass = someOtherClass;
 }
コード例 #2
0
 public KillerApp(ISomeOtherClass someOtherClass)
 {
     this.someOtherClass = someOtherClass;
 }
コード例 #3
0
 public KillerApp(String databasePath, ISomeOtherClass someOtherClass)
 {
     this.databasePath   = databasePath;
     this.someOtherClass = someOtherClass;
 }
コード例 #4
0
 public KillerApp(IRepository <BusinessObject> repository, ISomeOtherClass someOtherClass)
 {
     this.repository     = repository;
     this.someOtherClass = someOtherClass;
 }