コード例 #1
0
 public GetDeviceStatus(IControllerIdentificationService controllerIdentificationService, IAsyncClient asyncClient)
     : base(controllerIdentificationService, asyncClient)
 {
 }
コード例 #2
0
 public GetUserData(IControllerIdentificationService controllerIdentificationService, IAsyncClient asyncClient)
     : base(controllerIdentificationService, asyncClient)
 {
 }
コード例 #3
0
 public GetRealTimeClock(IControllerIdentificationService controllerIdentificationService, IAsyncClient asyncClient)
     : base(controllerIdentificationService, asyncClient)
 {
 }
コード例 #4
0
ファイル: Base.cs プロジェクト: IT-Labs/AccessControl
 protected Base(IControllerIdentificationService controllerIdentificationService, IAsyncClient asyncClient)
 {
     _controllerAddress = controllerIdentificationService.GetControllerAddress().GetAwaiter().GetResult();
     _asyncClient       = asyncClient;
 }