예제 #1
0
        public FlowStepController(IFlowStepService flowStepService, IImagePlugin imagePlugin
                                  , ICacheManager cacheManager)
        {
            this._flowStepService = flowStepService;
            this._imagePlugin     = imagePlugin;
            _cacheManager         = cacheManager;

            //Clear cache
            _cacheManager.RemoveByPattern(CACHE_FLOWSTEP_KEY);
        }
예제 #2
0
 public FlowStepController(IFlowStepService flowStepService, IImagePlugin imagePlugin)
 {
     this._flowStepService = flowStepService;
     this._imagePlugin     = imagePlugin;
 }