コード例 #1
0
ファイル: FlowStepController.cs プロジェクト: cong1389/AoThun
        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;
 }