Ejemplo n.º 1
0
 public TimeseriesController(IRepository <Doc> repository, IMemoryCache memoryCache, IStackMachine stackMachine)
 {
     _repository   = repository;
     _memoryCache  = memoryCache;
     _stackMachine = stackMachine;
 }
Ejemplo n.º 2
0
 public BaseDecorator(IStackMachine target)
 {
     _target = target;
 }
Ejemplo n.º 3
0
 public RecordingStackMachine(IStackMachine target) : base(target)
 {
 }