예제 #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="SolveMazeController"/> class.
 /// </summary>
 public SolveMazeController()
 {
     // TODO: inject this
     this.service = new SolveMazeService();
 }
예제 #2
0
 public MazeSolverController(ISolveMazeService mazeService)
 {
     _mazeService = mazeService;
 }