Example #1
0
 public PartRepository(BgaContext context, PlayerRepository PlayerRepo, PartPlayerRepository PartPlayerRepo)
 {
     this.context = context;
     this.partPlayerRepository = PartPlayerRepo;
     this.playerRepository     = PlayerRepo;
 }
Example #2
0
 public PlayerRepository(BgaContext context)
 {
     this.context = context;
 }
Example #3
0
 public GameRepository(BgaContext context)
 {
     this.context = context;
 }