Beispiel #1
0
 public MoveCommandHandler(IToyRobotService toyRobotService)
 {
     _toyRobotService = toyRobotService;
 }
Beispiel #2
0
 public TurnCommandHandler(IToyRobotService toyRobotService)
 {
     _toyRobotService = toyRobotService;
 }
 public ReportCommandHandler(IToyRobotService toyRobotService, IWriter writer)
 {
     _toyRobotService = toyRobotService;
     _writer          = writer;
 }