Example #1
0
 public FunctionsController(FunctionsMongoRepository repository)
 {
     _functionsRepository = repository;
 }
Example #2
0
 public InterpreterController(FunctionsMongoRepository repository, VariablesMongoRepository variablesRepository)
 {
     _functionsRepository = repository;
     _variablesRepository = variablesRepository;
 }