public CambamController(ILoadOptionsService loadOptionsService) { _loadOptionsService = loadOptionsService ?? throw new ArgumentNullException(); }
public LoadOptionViewModel(ILoadOptionsService loadOptionsService, IMapper mapper) { _loadOptionsService = loadOptionsService ?? throw new ArgumentNullException(); _mapper = mapper ?? throw new ArgumentNullException(); }
public CambamController(ILoadOptionsService loadOptionsService, ICNCLibUserContext usercontext) { _loadOptionsService = loadOptionsService ?? throw new ArgumentNullException(); _usercontext = usercontext ?? throw new ArgumentNullException(); ((CNCLibUserContext)_usercontext).InitFromController(this); }
public LoadInfoRest(ILoadOptionsService service) { _service = service ?? throw new ArgumentNullException(); }