public ModeratorTournamentService(EsportsTournamentsDbContext db, IMapper mapper)
 {
     this.db     = db;
     this.mapper = mapper;
 }
 public TeamService(EsportsTournamentsDbContext db, IMapper mapper)
 {
     this.db     = db;
     this.mapper = mapper;
 }
Example #3
0
 public AdminGameService(EsportsTournamentsDbContext db)
 {
     this.db = db;
 }