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