public MatchesController(IMapper mapper, IMatchService matchService, IMatchStadiumLocationService mslService, ITeamsService teamsService)
 {
     _matchService = matchService;
     _teamService  = teamsService;
     _mapper       = mapper;
     _mslService   = mslService;
 }
 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;
 }
 public MSLInfoViewComponent(IMapper mapper, IMatchStadiumLocationService mslService)
 {
     _mslService = mslService;
     _mapper     = mapper;
 }