Esempio n. 1
0
 public QuoteSpecialService(ISaveQuoteRepository saveQuoteRepository, IUserInfoRepository userInfoRepository, ILoginService loginService, ISubmitInfoRepository submitInfoRepository,
                            IQuoteResultRepository quoteResultRepository, ILastInfoRepository lastInfoRepository, IAgentRepository agentRepository, IMessageCenter messageCenter,
                            ICarInfoRepository carInfoRepository, IRenewalQuoteRepository renewalQuoteRepository, IQuoteReqCarinfoRepository quoteReqCarinfoRepository, IQuoteResultCarinfoRepository quoteResultCarinfoRepository,
                            ICacheHelper cacheHelper, ICarInsuranceCache carInsuranceCache, ICarRenewalRepository carRenewalRepository, IDeviceDetailRepository detailRepository, IAgentConfigRepository agentConfig, INoticexbService noticexbService, IConfigRepository configRepository,
                            ICarModelRepository carModelRepository, IMultiChannelsService multiChannelsService, ICheckRequestGetPrecisePrice checkRequestGetPrecisePrice, ICheckRequestGetSubmitInfo checkRequestGetSubmitInfo, IGetAgentInfoService getAgentInfoService, ISpecialOptionService specialOptionService)
     : base(agentRepository, cacheHelper)
 {
     _saveQuoteRepository          = saveQuoteRepository;
     _userInfoRepository           = userInfoRepository;
     _loginService                 = loginService;
     _infoRepository               = lastInfoRepository;
     _submitInfoRepository         = submitInfoRepository;
     _quoteResultRepository        = quoteResultRepository;
     _agentRepository              = agentRepository;
     _messageCenter                = messageCenter;
     _carInfoRepository            = carInfoRepository;
     _carInsuranceCache            = carInsuranceCache;
     _carRenewalRepository         = carRenewalRepository;
     _detailRepository             = detailRepository;
     _quoteReqCarinfoRepository    = quoteReqCarinfoRepository;
     _quoteResultCarinfoRepository = quoteResultCarinfoRepository;
     _agentConfig                 = agentConfig;
     _noticexbService             = noticexbService;
     _configRepository            = configRepository;
     _carModelRepository          = carModelRepository;
     _multiChannelsService        = multiChannelsService;
     _checkRequestGetPrecisePrice = checkRequestGetPrecisePrice;
     _checkRequestGetSubmitInfo   = checkRequestGetSubmitInfo;
     _getAgentInfoService         = getAgentInfoService;
     _specialOptionService        = specialOptionService;
 }
Esempio n. 2
0
 public ChargingSystemService(IAgentRepository agentRepository, ICacheHelper cacheHelper, IUserInfoRepository userInfoRepository, ICarRenewalRepository carRenewalRepository, ICarInfoRepository carInfoRepository, ILastInfoRepository lastInfoRepository)
     : base(agentRepository, cacheHelper)
 {
     _agentRepository      = agentRepository;
     _userInfoRepository   = userInfoRepository;
     _carRenewalRepository = carRenewalRepository;
     _carInfoRepository    = carInfoRepository;
     _lastInfoRepository   = lastInfoRepository;
 }
        public GetIntelligentReInfoService(IAgentRepository agentRepository, ICacheHelper cacheHelper,
            IGetAgentInfoService getAgentInfoService, ICarInfoRepository carInfoRepository, ICarRenewalRepository carRenewalRepository,
            IGetIntelligentInsurance getIntelligentInsurance, IRenewalStatusService renewalStatusService) : base(agentRepository, cacheHelper)
        {
            _agentRepository = agentRepository;
            _getAgentInfoService = getAgentInfoService;
            _carInfoRepository = carInfoRepository;
            _carRenewalRepository = carRenewalRepository;
            _getIntelligentInsurance = getIntelligentInsurance;
            _renewalStatusService = renewalStatusService;

        }
        public WorkOrderService(IUserinfoRenewalInfoRepository userinfoRenewalInfoRepository, IUserInfoRepository userInfoRepository, IAgentRepository agentRepository, IAgentDistributedRepository agentDistributedRepository, ITransferRecordRepository transferRecordRepository, ILastInfoRepository lastInfoRepository, ICacheHelper cacheHelper, INoticexbService noticexbService, IConsumerReviewRepository consumerReviewRepository, IMessageService messageService, ICarRenewalRepository carRenewalRepository, IAgentService agentService)
            : base(agentRepository, cacheHelper)
        {
            _agentRepository = agentRepository;
            logError         = LogManager.GetLogger("ERROR");
            logInfo          = LogManager.GetLogger("Info");

            _cacheHelper = cacheHelper;

            _userinfoRenewalInfoRepository = userinfoRenewalInfoRepository;
            _userInfoRepository            = userInfoRepository;
            _agentDistributedRepository    = agentDistributedRepository;
            _transferRecordRepository      = transferRecordRepository;
            _lastInfoRepository            = lastInfoRepository;
            _consumerReviewRepository      = consumerReviewRepository;
            _noticexbService      = noticexbService;
            _messageService       = messageService;
            _carRenewalRepository = carRenewalRepository;
            _agentService         = agentService;
        }
Esempio n. 5
0
 public GetReInfoMainService(IManagerRoleRepository managerRoleRepository, IGetAgentInfoService getAgentInfoService, IFiterAndRepeatDataService fiterAndRepeatDataService,
                             IUserInfoRepository userInfoRepository, IAgentRepository agentRepository, ICheckCarNeedDrivingInfoService checkCarNeedDrivingInfoService,
                             IQuoteReqCarinfoRepository quoteReqCarinfoRepository, IMessageCenter messageCenter, ICarInsuranceCache carInsuranceCache, ICarRenewalRepository carRenewalRepository, ICarInfoRepository carInfoRepository,
                             IBatchRenewalRepository batchRenewalRepository, ISentDistributedService sentDistributedService, IGetReInfoState getReInfoState,
                             IToCenterFromReInfoService toCenterFromReInfoService)
 {
     _managerRoleRepository          = managerRoleRepository;
     _getAgentInfoService            = getAgentInfoService;
     _fiterAndRepeatDataService      = fiterAndRepeatDataService;
     _userInfoRepository             = userInfoRepository;
     _agentRepository                = agentRepository;
     _checkCarNeedDrivingInfoService = checkCarNeedDrivingInfoService;
     _quoteReqCarinfoRepository      = quoteReqCarinfoRepository;
     _messageCenter             = messageCenter;
     _carInsuranceCache         = carInsuranceCache;
     _carRenewalRepository      = carRenewalRepository;
     _carInfoRepository         = carInfoRepository;
     _batchRenewalRepository    = batchRenewalRepository;
     _sentDistributedService    = sentDistributedService;
     _getReInfoState            = getReInfoState;
     _toCenterFromReInfoService = toCenterFromReInfoService;
 }