Beispiel #1
0
 public RaiderController(IRaiderService raiderSerivce, IUriService uriService, IMapper mapper, IRosterAccessService rosterAccessService)
 {
     _raiderSerivce       = raiderSerivce;
     _uriService          = uriService;
     _mapper              = mapper;
     _rosterAccessService = rosterAccessService;
 }
 public RosterController(IRosterService rosterService, IMapper mapper, IUriService uriService, IRosterAccessService rosterAccessService,
                         IRaiderService raiderService, ILoggerManager logger)
 {
     _rosterService       = rosterService;
     _mapper              = mapper;
     _uriService          = uriService;
     _rosterAccessService = rosterAccessService;
     _raiderService       = raiderService;
     _logger              = logger;
 }