Exemplo n.º 1
0
 public BattleRoyaleMatchFinisherService(ApplicationDbContext dbContext,
     IBattleRoyaleUnfinishedMatchesSingletonService unfinishedMatchesSingletonService,
     IBattleRoyaleMatchRewardCalculatorService battleRoyaleMatchRewardCalculatorService,
     IWarshipRatingReaderService warshipRatingReaderService)
 {
     this.dbContext = dbContext;
     this.unfinishedMatchesSingletonService = unfinishedMatchesSingletonService;
     this.battleRoyaleMatchRewardCalculatorService = battleRoyaleMatchRewardCalculatorService;
     this.warshipRatingReaderService = warshipRatingReaderService;
 }
 public PlayerMatchResultDbReaderService(ApplicationDbContext dbContext,
                                         IWarshipRatingReaderService warshipRatingReaderService)
 {
     this.dbContext = dbContext;
     this.warshipRatingReaderService = warshipRatingReaderService;
 }