예제 #1
0
 public ManagerService(IManagerRepository repository, IManagerRoleRepository roleRepository, IMapper mapper, IManagerLogRepository managerLogRepository)
 {
     _repository           = repository;
     _roleRepository       = roleRepository;
     _mapper               = mapper;
     _managerLogRepository = managerLogRepository;
 }
예제 #2
0
 public HomeController(IManagerRepository manager, IManagerRoleRepository managerRole, IMenuRepository menu, IRolePermissionRepository rolePermission)
 {
     _manager        = manager;
     _managerRole    = managerRole;
     _menu           = menu;
     _rolePermission = rolePermission;
 }
예제 #3
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;
 }
예제 #4
0
 public ManagerRoleService()
 {
     this._repository = DependencyManager.Resolve<IManagerRoleRepository>();
 }
 public AuthorityService(
     IManagerRoleRepository managerRoleRepository)
 {
     _managerRoleRepository = managerRoleRepository;
 }
예제 #6
0
 public ManagerRoleService()
 {
     this._repository = DependencyManager.Resolve <IManagerRoleRepository>();
 }
예제 #7
0
 public ManagerRoleService(IManagerRoleRepository repository, IMapper mapper)
 {
     _repository = repository;
     _mapper     = mapper;
 }
예제 #8
0
 public ManagerRoleService(IManagerRoleRepository repository)
 {
     _repository = repository;
 }
예제 #9
0
 public ManagerRoleController(IManagerRoleRepository managerRole)
 {
     _managerRole = managerRole;
 }
예제 #10
0
 public ManagerRoleController(IManagerRoleRepository repository)
 {
     ManagerRoleRepository = repository ?? throw new ArgumentNullException(nameof(repository));
 }