public EmployeeController(IEmployeeOrchestrator employeeOrchestrator)
 {
     _employeeOrchestrator = employeeOrchestrator;
 }
Exemplo n.º 2
0
 public EmployeeController()
 {
     _employeeOrchestrator = new EmployeeOrchestrator();
 }