Ejemplo n.º 1
0
 public ScriptService(IRobotRepository robotRepository, IUserRepository userRepository, IPlayerRepository playerRepository, IScriptRepository scriptRepository)
 {
     _robotRepository  = robotRepository;
     _userRepository   = userRepository;
     _playerRepository = playerRepository;
     _scriptRepository = scriptRepository;
 }
 public RobotService(ILogger <RobotService> logger, IRobotRepository repository, IExplorersTeamRepository explorersTeamRepository, IRabbitHandler rabbitHandler, IOptions <AppSettings> appSettings)
 {
     m_logger     = logger;
     m_repository = repository;
     m_explorersTeamRepository = explorersTeamRepository;
     m_rabbitHandler           = rabbitHandler;
     m_appSettings             = appSettings.Value;
 }
Ejemplo n.º 3
0
 public RobotService(IRobotRepository repository, IRobotValidator robotValidator,
                     ITeamOfExplorersRepository teamOfExplorersRepository, IShuttleRepository shuttleRepository,
                     IExplorerRepository explorerRepository, IHttpClientFactory clientFactory)
 {
     _repository                = repository;
     _robotValidator            = robotValidator;
     _teamOfExplorersRepository = teamOfExplorersRepository;
     _shuttleRepository         = shuttleRepository;
     _explorerRepository        = explorerRepository;
     _clientFactory             = clientFactory;
 }
 public void Setup()
 {
     repository = new RobotRepository();
 }
Ejemplo n.º 5
0
 public RobotService(IRobotRepository robotRepository, IMapper mapper)
 {
     _robotRepository = robotRepository;
     _mapper          = mapper;
 }
Ejemplo n.º 6
0
 public HeadAlignHandler(IRobotRepository repository)
 {
     _repository = repository;
 }
Ejemplo n.º 7
0
 public DeleteRobotHandler(IRobotRepository repository)
 {
     _repository = repository;
 }
Ejemplo n.º 8
0
 public MoveWristHandler(IRobotRepository repository)
 {
     _repository = repository;
 }
Ejemplo n.º 9
0
 public FindRobotHandler(IRobotRepository repository)
 {
     _repository = repository;
 }
Ejemplo n.º 10
0
 public RobotService(IRobotRepository robotRepository) : base(robotRepository)
 {
 }
Ejemplo n.º 11
0
 public HeadRotateHandler(IRobotRepository repository, IMediator mediator)
 {
     _repository = repository;
     _mediator   = mediator;
 }
 public RobotServices(IRobotRepository repository)
 {
     _repository = repository;
 }
Ejemplo n.º 13
0
 public PlanetService(IHumanRepository humanRepository, IRobotRepository robotRepository, IRepository <Planet> planetRepository) : base(planetRepository)
 {
     _robotRepository = robotRepository;
     _humanRepository = humanRepository;
 }
Ejemplo n.º 14
0
 public RobotController(IRobotRepository robotRepository, IMapper mapper)
 {
     _mapper          = mapper;
     _robotRepository = robotRepository;
 }
Ejemplo n.º 15
0
 public RobotService(IRobotRepository robotRepository)
 {
     _robotRepository = robotRepository;
 }
Ejemplo n.º 16
0
 public CreateRobotHandler(IRobotRepository repository)
 {
     _repository = repository;
 }
Ejemplo n.º 17
0
 public RobotRepositoryTests(DatabaseFixture databaseFixture)
 {
     m_databaseFixture = databaseFixture;
     m_repository      = new RobotRepository(m_databaseFixture.DataContext);
 }
Ejemplo n.º 18
0
 public ShuttleService(IRobotRepository robotRepository, IShuttleRepository shuttleRepository)
 {
     _robotRepository   = robotRepository;
     _shuttleRepository = shuttleRepository;
 }
Ejemplo n.º 19
0
 public Handler(IRobotRepository repository)
 {
     _repository = repository;
 }
Ejemplo n.º 20
0
 public MoveElbowHandler(IRobotRepository repository)
 {
     _repository = repository;
 }