コード例 #1
0
        public DataProviderService(ITechnologyService technologyService,
                                   IOperatorService operatorService, IDataGatheringService dataGatheringService)
        {
            _technologyService = technologyService;
            _technologyService.CheckArgumentIsNull(nameof(_technologyService));

            _operatorService = operatorService;
            _operatorService.CheckArgumentIsNull(nameof(_operatorService));

            _dataGatheringService = dataGatheringService;
            _dataGatheringService.CheckArgumentIsNull(nameof(_dataGatheringService));
        }
コード例 #2
0
 public ApiOperatorController(IOperatorService operatorService)
 {
     _operatorService = operatorService;
     _operatorService.CheckArgumentIsNull(nameof(_operatorService));
 }