Пример #1
0
 public CambamController(ILoadOptionsService loadOptionsService)
 {
     _loadOptionsService = loadOptionsService ?? throw new ArgumentNullException();
 }
Пример #2
0
 public LoadOptionViewModel(ILoadOptionsService loadOptionsService, IMapper mapper)
 {
     _loadOptionsService = loadOptionsService ?? throw new ArgumentNullException();
     _mapper             = mapper ?? throw new ArgumentNullException();
 }
Пример #3
0
 public CambamController(ILoadOptionsService loadOptionsService, ICNCLibUserContext usercontext)
 {
     _loadOptionsService = loadOptionsService ?? throw new ArgumentNullException();
     _usercontext        = usercontext ?? throw new ArgumentNullException();
     ((CNCLibUserContext)_usercontext).InitFromController(this);
 }
Пример #4
0
 public LoadInfoRest(ILoadOptionsService service)
 {
     _service = service ?? throw new ArgumentNullException();
 }