コード例 #1
0
 public TimeseriesController(IRepository <Doc> repository, IMemoryCache memoryCache, IStackMachine stackMachine)
 {
     _repository   = repository;
     _memoryCache  = memoryCache;
     _stackMachine = stackMachine;
 }
コード例 #2
0
 public BaseDecorator(IStackMachine target)
 {
     _target = target;
 }
コード例 #3
0
 public RecordingStackMachine(IStackMachine target) : base(target)
 {
 }