(Caller caller)
| 74 | |
| 75 | /* Routes the call to an available employee, or saves in a queue if no employee available. */ |
| 76 | public void dispatchCall(Caller caller) { |
| 77 | Call call = new Call(caller); |
| 78 | dispatchCall(call); |
| 79 | } |
| 80 | |
| 81 | /* Routes the call to an available employee, or saves in a queue if no employee available. */ |
| 82 | public void dispatchCall(Call call) { |
no test coverage detected