Exemplo n.º 1
0
 public UserService(IConfiguration config, IOptions <Dto.AppSettings> appSettings, IMapper mapper, UserDbContext dbContext)
 {
     _config        = config;
     _appSettings   = appSettings.Value;
     _mapper        = mapper;
     _userDbContext = dbContext;
 }
Exemplo n.º 2
0
 public PaymentService(IConfiguration config, IOptions <Dto.AppSettings> appSettings, IMapper mapper, PaymentDbContext dbContext)
 {
     _config           = config;
     _appSettings      = appSettings.Value;
     _mapper           = mapper;
     _paymentDbContext = dbContext;
 }