Ejemplo n.º 1
0
 public MoveCommandHandler(IToyRobotService toyRobotService)
 {
     _toyRobotService = toyRobotService;
 }
Ejemplo n.º 2
0
 public TurnCommandHandler(IToyRobotService toyRobotService)
 {
     _toyRobotService = toyRobotService;
 }
 public ReportCommandHandler(IToyRobotService toyRobotService, IWriter writer)
 {
     _toyRobotService = toyRobotService;
     _writer          = writer;
 }