public MatchService(IMatchRepository matchRepository, IMatchMapper matchMapper, IUserService userService,
     IAdministratorService administratorService)
 {
     m_MatchRepository = matchRepository;
     m_UserService = userService;
     m_MatchMapper = matchMapper;
     m_AdministratorService = administratorService;
 }
Esempio n. 2
0
 public MatchController(IMatchMapper matchMapper, IMatchService matchService)
 {
     _mapper       = matchMapper;
     _matchService = matchService;
 }
 public MatchesController(IMatchesApplication matchesApplication, IMatchMapper matchMapper)
 {
     _matchesApplication = matchesApplication;
     _matchMapper = matchMapper;
 }
Esempio n. 4
0
 public BetMapper(IBoxerRepository boxerRepository, IUserRepository userRepository, IMatchMapper matchMapper)
 {
     m_BoxerRepository = boxerRepository;
     m_UserRepository = userRepository;
     m_MatchMapper = matchMapper;
 }