Exemplo n.º 1
0
 public CompetitionsController(ICompetitionsService competitionsService, IUsersService usersService, IAchievementsService achievementsService, ITimesService timesService)
 {
     this.competitionsService = competitionsService;
     this.usersService        = usersService;
     this.achievementsService = achievementsService;
     this.timesService        = timesService;
 }
 public BetfairFetchingService(ICompetitionsService compsService, IEventsService eventsService, IMarketsService marketsService, IMarketBooksService marketBooksService, IAuthClient authClient, IKeepAliveClient keepAliveClient)
 {
     _compsService       = compsService;
     _eventsService      = eventsService;
     _marketsService     = marketsService;
     _marketBooksService = marketBooksService;
     _authClient         = authClient;
     _keepAliveClient    = keepAliveClient;
 }
Exemplo n.º 3
0
 public TeamsService(
     IUnitOfWork unitOfWork,
     ICityService cityService,
     ICountryService countryService,
     ICompetitionsService competitionsService,
     IMapper mapper
     )
 {
     this.unitOfWork          = unitOfWork;
     this.cityService         = cityService;
     this.countryService      = countryService;
     this.competitionsService = competitionsService;
     this.mapper = mapper;
 }
 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 CompetitionsController(ApplicationDbContext context, ICompetitionsService competitionsService, IUsersService usersService)
 {
     _context = context;
     this.competitionsService = competitionsService;
     this.usersService        = usersService;
 }
 public CompetitionsController(ICompetitionsService competitions, ITracksPopulator tracksPopulator)
 {
     this.competitions = competitions;
     this.tracksPopulator = tracksPopulator;
 }
 public CompetitionsViewModel(ICompetitionsService competitionsService, IMvxNavigationService navigationService)
 {
     _competitionsService = competitionsService;
     _navigationService   = navigationService;
 }