Exemplo n.º 1
0
        public MazeService(ILogger <MazeService> logger, IBfsService bfsService, IAStarService aStarService, IBfsTwoWayService bfsTwoWayService,
                           UserRepository userRepository, MazeRepository mazeRepository, UserMazeRepository userMazeRepository)
        {
            _logger           = logger;
            _bfsService       = bfsService;
            _aStarService     = aStarService;
            _bfsTwoWayService = bfsTwoWayService;

            _userRepository     = userRepository;
            _mazeRepository     = mazeRepository;
            _userMazeRepository = userMazeRepository;
        }
 public BfsController(IMapper mapper, IBfsService bfsService)
 {
     this.mapper     = mapper;
     this.bfsService = bfsService;
 }