public EmployeeController(IEmployeeOrchestrator employeeOrchestrator)
 {
     _employeeOrchestrator = employeeOrchestrator;
 }
Пример #2
0
 public EmployeeController()
 {
     _employeeOrchestrator = new EmployeeOrchestrator();
 }