Esempio n. 1
0
 public PlayersController(IRacesService racesService, IPlayersService playersService, UserManager <ApplicationUser> userManager, IImagesService imagesService)
 {
     this.racesService   = racesService;
     this.playersService = playersService;
     this.userManager    = userManager;
     this.imagesService  = imagesService;
 }
Esempio n. 2
0
 public GetRacesHandler(IMapper mapper, IRacesService racesService)
 {
     _mapper       = mapper;
     _racesService = racesService;
 }
Esempio n. 3
0
 public RacesController(ApplicationDbContext db, IRacesService racesService, UserManager <ApplicationUser> userManager)
 {
     this.db           = db;
     this.racesService = racesService;
     this.userManager  = userManager;
 }
Esempio n. 4
0
 public ProfessionsController(IProfessionsService professionsService, IRacesService racesService, AuthorizerService authorizerService)
 {
     _professionsService = professionsService;
     _authorizerService  = authorizerService;
     _racesService       = racesService;
 }
Esempio n. 5
0
 public RacesController(IRacesService service, ILoggingService logger)
 {
     this.service = service;
     this.logger  = logger;
 }