Exemplo n.º 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;
 }
Exemplo n.º 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;
 }
Exemplo n.º 3
0
 public BikesViewModel(IBikesService service)
 {
     this.Service = service;
 }