Exemplo n.º 1
0
 public MemoryService(IUpperBrainService upperBrainService, IBrainRepository brainRepository, IMathsService mathsService)
 {
     this.upperBrainService = upperBrainService;
     this.brainRepository   = brainRepository;
     this.mathsService      = mathsService;
 }
Exemplo n.º 2
0
 public BrainController(IMemoryService memoryService, IBrainRepository brainRepository)
 {
     this.memoryService   = memoryService;
     this.brainRepository = brainRepository;
 }
 public NeuralNetworkRepository(IBrainRepository brainRepository)
 {
     _brainRepository = brainRepository;
 }