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)); }
public ApiOperatorController(IOperatorService operatorService) { _operatorService = operatorService; _operatorService.CheckArgumentIsNull(nameof(_operatorService)); }