Exemplo n.º 1
0
        private IGenerationService _createTestSubject(INeighborCounterService neighbourCounterSvc = null)
        {
            neighbourCounterSvc = neighbourCounterSvc ?? new NeighborCounterServiceBuilder().Build();

            return(new GenerationService(neighbourCounterSvc));
        }
Exemplo n.º 2
0
 public GenerationService(INeighborCounterService neighbourCounterSvc)
 {
     _neighbourCounterSvc = neighbourCounterSvc;
 }