public ShopController(IMapper mapper, IMatchService matchService, ITeamsService teamsService, IMatchStadiumLocationService mslService
                       , ICompetitionsService competitionsService, ILocationsService locationsService, IOrderService orderService, IOrderLineService orderLineService,
                       ITicketService ticketService, ITeamCompetitionLocationService tclService, ISubscriptionService subscriptionService, IEmailSender emailSender)
 {
     _mapper              = mapper;
     _matchService        = matchService;
     _teamsService        = teamsService;
     _mslService          = mslService;
     _competitionsService = competitionsService;
     _locationsService    = locationsService;
     _orderLineService    = orderLineService;
     _orderService        = orderService;
     _ticketService       = ticketService;
     _tclService          = tclService;
     _subscriptionService = subscriptionService;
     _emailSender         = emailSender;
 }
Exemplo n.º 2
0
 public TCLInfoViewComponent(IMapper mapper, ITeamCompetitionLocationService teamCompetitionLocationService)
 {
     _tclService = teamCompetitionLocationService;
     _mapper     = mapper;
 }