Example #1
0
 public AuthentyService(IAuthentyRepository authentyRepository, ICustomerRepository customerRepository, ICustomerCache customerCache, IStaffRepository staffRepository, IDataInOrgRepository dataInOrgRepository, IOrgRepository orgRepository)
 {
     _authentyRepository  = authentyRepository;
     _customerRepository  = customerRepository;
     _customerCache       = customerCache;
     _staffRepository     = staffRepository;
     _dataInOrgRepository = dataInOrgRepository;
     _orgRepository       = orgRepository;
 }
Example #2
0
 public CustomerService(ICustomerRepository customerRepository, ICustomerCache customerCache, IAuthentyRepository authentyRepository, IHxHttpClientFactory hxHttpClientFactory, IConfiguration configuration, IBalanceRepository balanceRepository, IRechangeRepository rechangeRepository, RedisHelper redisHelper, IDataInOrgRepository dataInOrgRepository, IStaffRepository staffRepository, IOrgRepository orgRepository)
 {
     _customerRepository  = customerRepository;
     _customerCache       = customerCache;
     _authentyRepository  = authentyRepository;
     _hxHttpClientFactory = hxHttpClientFactory;
     _configuration       = configuration;
     _balanceRepository   = balanceRepository;
     _rechangeRepository  = rechangeRepository;
     _redisHelper         = redisHelper;
     _dataInOrgRepository = dataInOrgRepository;
     _staffRepository     = staffRepository;
     _orgRepository       = orgRepository;
 }