Exemplo n.º 1
0
 public HmrcCommonDataService(IOptions <HmrcSettings> hmrcSettings)
 {
     _hmrcSettings = hmrcSettings.Value;
 }
Exemplo n.º 2
0
 public HmrcAuthController(IOptions <HmrcSettings> hmrcSettings, IHmrcCommonDataService commonDataService, ApplicationDbContext applicationDbContext)
 {
     _hmrcSettings         = hmrcSettings.Value;
     _commonDataService    = commonDataService;
     _applicationDbContext = applicationDbContext;
 }