public void Setup()
 {
     this.dbContext = Substitute.For <IPipeBandGamesContext>();
     this.service   = new ContestService(dbContext);
 }
Exemplo n.º 2
0
 public ContestService(IPipeBandGamesContext dbContext)
 {
     this.dbContext = dbContext;
 }