コード例 #1
0
 public ValuesController(ISingTest sing, ITranTest tran, ISconTest scon, IAService aService)
 {
     this.sing     = sing;
     this.tran     = tran;
     this.scon     = scon;
     this.aService = aService;
 }
コード例 #2
0
 public TestController(ISingTest sing, ISconTest scon, ITranTest tran, IAService aService)
 {
     _sing     = sing;
     _scon     = scon;
     _tran     = tran;
     _aService = aService;
 }
コード例 #3
0
ファイル: Model.cs プロジェクト: MrSiGua/IocTest
 public AService(ISingTest sing, ITranTest tran, ISconTest scon)
 {
     this.sing = sing;
     this.tran = tran;
     this.scon = scon;
 }
コード例 #4
0
ファイル: AService.cs プロジェクト: dong12345/dotnetCore-Mvc
 public AService(ISingTest sing, ITranTest tran, ISconTest scon)
 {
     _sing = sing;
     _tran = tran;
     _scon = scon;
 }