示例#1
0
 public GameFacade(
     IUnitOfWorkProvider unitOfWorkProvider,
     IGameRepository gameRepository,
     IMapper mapper,
     IGameParticipationRepository gameParticipationRepository,
     IGamePlayBuilder gamePlayBuilder)
     : base(unitOfWorkProvider)
 {
     this.gameRepository = gameRepository;
     this.mapper         = mapper;
     this.gameParticipationRepository = gameParticipationRepository;
     this.gamePlayBuilder             = gamePlayBuilder;
 }
 public GameParticipationService(IGameParticipationRepository gameParticipationRepository)
 {
     _gameParticipationRepository = gameParticipationRepository;
 }