コード例 #1
0
 public MyService(IMyOtherService myOtherService)
 {
     _myOtherService = myOtherService;
 }
コード例 #2
0
 public MyService(IMyOtherService other)
 {
 }
コード例 #3
0
ファイル: Counter.cs プロジェクト: DuncanJack/Blazor
 public Counter(IMyOtherService myOtherService)
 {
     Console.WriteLine("Counter.Counter");
     _myOtherService = myOtherService;
 }
コード例 #4
0
 public MyService(IMyOtherService otherService, HttpClient httpClient)
 {
     _otherService = otherService;
     _httpClient   = httpClient;
 }
コード例 #5
0
 public MyService(IMyOtherService other)
 {
     this._other = other;
 }
コード例 #6
0
ファイル: MyService.cs プロジェクト: starovernet/Aop-examples
 public MyService(IMyOtherService otherService)
 {
     _otherService = otherService;
 }
コード例 #7
0
 public MyService(IMyOtherService other) => _other = other;
コード例 #8
0
ファイル: Program.cs プロジェクト: hurricanepkt/AOPinNET
 public MyService(IMyOtherService other) { }