예제 #1
0
 public RaceController(ITracksService tracksService, IPlayersService playersService, IBikesService bikesService, IAttemptsService attemptsService, IMapper mapper)
 {
     this.tracksService   = tracksService;
     this.playersService  = playersService;
     this.bikesService    = bikesService;
     this.attemptsService = attemptsService;
     this.mapper          = mapper;
 }
예제 #2
0
 public BikesController(IAttemptsService attemptsService, IPlayersService playersService, IBikesService bikesService, IPartsService partsService, IMapper mapper)
 {
     this.attemptsService = attemptsService;
     this.playersService  = playersService;
     this.bikesService    = bikesService;
     this.partsService    = partsService;
     this.mapper          = mapper;
 }
예제 #3
0
 public HomeController(IPartsService partsService, ITracksService tracksService, IWaresService waresService, IPlayersService playersService, IAttemptsService attemptsService, IMapper mapper)
 {
     this.partsService    = partsService;
     this.tracksService   = tracksService;
     this.waresService    = waresService;
     this.playersService  = playersService;
     this.attemptsService = attemptsService;
     this.mapper          = mapper;
 }
예제 #4
0
 public TFNController(IOptions <AttemptsConfigurations> attemptsConfig, IOptions <WeightingFactorConfigurations> weightingConfig,
                      IAttemptsService attemptsService, IWeightingFactorService weightingFactorService, ITFNService tfnService)
 {
     _attemptsConfig         = attemptsConfig;
     _weightingConfig        = weightingConfig;
     _attemptsService        = attemptsService;
     _weightingFactorService = weightingFactorService;
     _tfnService             = tfnService;
 }
예제 #5
0
 public AttemptsController(IAttemptsService attemptsService, IMapper mapper)
 {
     _mapper          = mapper;
     _attemptsService = attemptsService;
 }