Esempio n. 1
0
 public FunctionsController(FunctionsMongoRepository repository)
 {
     _functionsRepository = repository;
 }
Esempio n. 2
0
 public InterpreterController(FunctionsMongoRepository repository, VariablesMongoRepository variablesRepository)
 {
     _functionsRepository = repository;
     _variablesRepository = variablesRepository;
 }