Beispiel #1
0
 public BrainService(IMathsService mathsService)
 {
     this.mathsService = mathsService;
 }
Beispiel #2
0
 public MemoryService(IUpperBrainService upperBrainService, IBrainRepository brainRepository, IMathsService mathsService)
 {
     this.upperBrainService = upperBrainService;
     this.brainRepository   = brainRepository;
     this.mathsService      = mathsService;
 }
Beispiel #3
0
 public void Setup()
 {
     _service = new MathsService();
 }
Beispiel #4
0
 public Profiler(IMathsService mathsService)
 {
     _mathsService = mathsService;
 }
 public HomeController(IMathsService mathsService)
 {
     _mathsService = mathsService;
 }