コード例 #1
0
 public SecondService(dotnetContext dotnetContext)
 {
     this._dotnetContext = dotnetContext;
 }
コード例 #2
0
 public EighthService(dotnetContext dotnetContext)
 {
     this._dotnetContext = dotnetContext;
 }
コード例 #3
0
 public FirstService(dotnetContext dotnetContext, ISecondService secondService)
 {
     this._dotnetContext = dotnetContext;
     this._secondService = secondService;
 }
コード例 #4
0
 public SeventhService(dotnetContext dotnetContext, IEighthService eighthService)
 {
     this._dotnetContext = dotnetContext;
     this._eighthService = eighthService;
 }
コード例 #5
0
 public SixthService(dotnetContext dotnetContext)
 {
     this._dotnetContext = dotnetContext;
 }
コード例 #6
0
 public FifthService(dotnetContext dotnetContext, ISixthService sixthService)
 {
     this._dotnetContext = dotnetContext;
     this._sixthService  = sixthService;
 }
コード例 #7
0
 public FourthService(dotnetContext dotnetContext)
 {
     this._dotnetContext = dotnetContext;
 }
コード例 #8
0
 public ThirdService(dotnetContext dotnetContext, IFourthService fourthService)
 {
     this._dotnetContext = dotnetContext;
     this._fourthService = fourthService;
 }