예제 #1
0
 public AppService(
     DataContext context,
     IKafkaProducer k,
     CoreBankingService c)
 {
     _dbContext         = context;
     kafkaProducer      = k;
     coreBankingService = c;
 }
예제 #2
0
 public OnePayController(
     ITransactionService transactionService,
     IUserService userService,
     IOnePayService onePayService,
     ICoreBankingService coreBankingService,
     IMapper mapper)
 {
     _transactionService = transactionService;
     _userService        = userService;
     _onePayService      = onePayService;
     _coreBankingService = coreBankingService;
     _mapper             = mapper;
 }