예제 #1
0
 public GameRulesService(IUnitOfWork unitOfWork, IMapper mapper, IGameNotificationService notifier)
 {
     this.unitOfWork = unitOfWork;
     this.mapper     = mapper;
     this.notifier   = notifier;
 }
예제 #2
0
 public PushNotifications(IBackgroundJobClient backgroundJobClient, IGameNotificationService gameNotificationService)
 {
     this.backgroundJobClient     = backgroundJobClient;
     this.gameNotificationService = gameNotificationService;
 }
예제 #3
0
 public ModerationController(IUnitOfWork uow, IGameEngineService gameEngine, IGameNotificationService notifier)
 {
     this.uow        = uow;
     this.gameEngine = gameEngine;
     this.notifier   = notifier;
 }