コード例 #1
0
 public AccountService(
     UaaDbContext context,
     IMapper mapper,
     IOptions <AppSettings> appSettings)
 {
     _context     = context;
     _mapper      = mapper;
     _appSettings = appSettings.Value;
 }
コード例 #2
0
ファイル: UserService.cs プロジェクト: junyi0124/uaa
 public UserService(UaaDbContext context,
                    IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }