Esempio n. 1
0
 public EepromConfigurationController(IEepromConfigurationService eepromConfigurationService)
 {
     _eepromConfigurationService = eepromConfigurationService ?? throw new ArgumentNullException();
 }
 public EepromConfigurationController(IEepromConfigurationService eepromConfigurationService, ICNCLibUserContext usercontext)
 {
     _eepromConfigurationService = eepromConfigurationService ?? throw new ArgumentNullException();
     _usercontext = usercontext ?? throw new ArgumentNullException();
     ((CNCLibUserContext)_usercontext).InitFromController(this);
 }