public XmlService(IBetService betService, IEventService eventService, IMatchService matchService, IOddService oddService, ISportService sportService)
 {
     this.betService   = betService;
     this.eventService = eventService;
     this.matchService = matchService;
     this.oddService   = oddService;
     this.sportService = sportService;
 }
 public NotificationsHub(ISportService sportService, IEventService eventService, IMatchService matchService, IBetService betService, IOddService oddService)//, IHubContext<NotificationsHub> hubContext)
 {
     this.sportService = sportService;
     this.eventService = eventService;
     this.matchService = matchService;
     this.betService   = betService;
     this.oddService   = oddService;
 }
Ejemplo n.º 3
0
 public OddsController(IOddService oddService,
                       IMatchService matchService,
                       IRepository <Odd> oddRepository, IMapper mapper)
 {
     this.mapper        = mapper;
     this.oddRepository = oddRepository;
     this.matchService  = matchService;
     this.oddService    = oddService;
 }
Ejemplo n.º 4
0
 public BetsController(IRepository <Odd> oddRepository,
                       IOddService oddService,
                       IHomeService homeService,
                       IBetService betService,
                       IRepository <Bet> betRepository)
 {
     this.oddRepository = oddRepository;
     this.oddService    = oddService;
     this.homeService   = homeService;
     this.betService    = betService;
     this.betRepository = betRepository;
 }