Esempio n. 1
0
 public HMLController(IHMLService hmlService)
 {
     _hmlService = hmlService ?? throw new ArgumentNullException(nameof(hmlService));
 }
Esempio n. 2
0
 public CamundaController(ICamundaService camundaService, IHMLService hmlService, CamundaSettings cammundaSettings)
 {
     _hmlService       = hmlService ?? throw new ArgumentNullException(nameof(_hmlService));
     _cammundaSettings = cammundaSettings ?? throw new System.ArgumentNullException(nameof(cammundaSettings));
     _camundaService   = camundaService ?? throw new System.ArgumentNullException(nameof(camundaService));
 }
Esempio n. 3
0
 public BPMController(IBPMService bpmService, IHMLService hmlService)
 {
     _hmlService = hmlService ?? throw new System.ArgumentNullException(nameof(hmlService));
     _bpmService = bpmService ?? throw new System.ArgumentNullException(nameof(bpmService));
 }