Exemplo n.º 1
0
        public SiccarStatusCache(
            ISiccarTransactionRequestor transactionRequestor,
            IProgressReportRequestor progressReportRequestor,
            IUserCache userCache,
            ISiccarTransactionCache siccarTransactionCache,
            IProgressReportCache progressReportCache,
            IProcessSchemaCache processSchemaCache,
            IUserJustCompletedStepCache userJustCompletedStepCache,
            ISiccarStatusCacheResponseManager siccarStatusCacheResponseManager,
            IProgressReportModelManager progressReportModelManager,
            ISiccarTransactionManager siccarTransactionManager
            )
        {
            _transactionRequestor    = transactionRequestor;
            _progressReportRequestor = progressReportRequestor;
            _userCache = userCache;
            _siccarTransactionCache = siccarTransactionCache;

            _progressReportModelManager = progressReportModelManager;

            _progressReportCache = progressReportCache;
            _processSchemaCache  = processSchemaCache;
            _siccarStatusCacheResponseManager = siccarStatusCacheResponseManager;
            _siccarTransactionManager         = siccarTransactionManager;
            _userJustCompletedStepCache       = userJustCompletedStepCache;
        }
 public SiccarStatusCacheResponseManager(IUserCache userCache, ISiccarTransactionCache siccarTransactionCache, IProgressReportCache progressReportCache, IProcessSchemaCache processSchemaCache, IUserJustCompletedStepCache userJustCompletedStepCache)
 {
     _userCache = userCache;
     _siccarTransactionCache     = siccarTransactionCache;
     _progressReportCache        = progressReportCache;
     _processSchemaCache         = processSchemaCache;
     _userJustCompletedStepCache = userJustCompletedStepCache;
 }