示例#1
0
 public PaymentController(ILoggerFactory depLoggerFactory, IEWalletService eWalletService,
                          IConfiguration configuration)
 {
     _logger         = depLoggerFactory.CreateLogger("Controllers.PaymentController");
     _eWalletService = eWalletService;
     _configuration  = configuration;
 }
示例#2
0
 public EWalletsController(ILoggerFactory depLoggerFactory,
                           IEWalletService eWalletService,
                           IMapper mapper)
 {
     _logger         = depLoggerFactory.CreateLogger("Controllers.EWalletsController");
     _eWalletService = eWalletService;
     _mapper         = mapper;
 }