public StandupController( IWorkService workService, IProjectService projectService, IObstacleService obstacleService ) { _workService = workService; _obstacleService = obstacleService; _projectService = projectService; }
public Rover(IObstacleService svc) : this() { this.ObstacleService = svc; }
public Rover() { this.ObstacleService = new ObstacleService(); Coordinates = new RoverCoordinates(0, 0); Direction = Direction.North; }
public ObstacleViewComponent(IObstacleService obstacleService, IWorkService workService) { _obstacleService = obstacleService; _workService = workService; }