public void Setup()
 {
     this.dbContext = Substitute.For <IPipeBandGamesContext>();
     this.service   = new ContestService(dbContext);
 }
Пример #2
0
 public ContestService(IPipeBandGamesContext dbContext)
 {
     this.dbContext = dbContext;
 }