コード例 #1
0
 public TelephonesController(IGenTelephonService broPasswdService, IGetCallCounterService getCallCounterService)
 {
     _broTelephonService    = broPasswdService;
     _getCallCounterService = getCallCounterService;
 }
コード例 #2
0
 public DateTimeController(IGetCallCounterService getCallCounterService)
 => _getCallCounterService = getCallCounterService;
コード例 #3
0
ファイル: GuidsController.cs プロジェクト: brodata/api
 public GuidsController(IGetCallCounterService getCallCounterService)
 {
     _getCallCounterService = getCallCounterService;
 }
コード例 #4
0
ファイル: PasswordsController.cs プロジェクト: brodata/api
 public PasswordsController(IGenPasswdService broPasswdService, IGetCallCounterService getCallCounterService)
 {
     _genPasswdService      = broPasswdService;
     _getCallCounterService = getCallCounterService;
 }