コード例 #1
0
ファイル: AltinnApp.cs プロジェクト: tomolse/altinn-studio
 public AltinnApp(
     IAppResources appResourcesService,
     ILogger <AltinnApp> logger,
     IData dataService,
     IProcess processService,
     IPDF pdfService,
     IProfile profileService,
     IRegister registerService,
     IPrefill prefillService) : base(appResourcesService, logger, dataService, processService, pdfService, prefillService)
 {
     _validationHandler    = new ValidationHandler();
     _calculationHandler   = new CalculationHandler();
     _instantiationHandler = new InstantiationHandler(profileService, registerService);
 }
コード例 #2
0
ファイル: AltinnApp.cs プロジェクト: torbjokv/altinn-studio
 public AltinnApp(
     IAppResources appResourcesService,
     ILogger <AltinnApp> logger,
     IData dataService,
     IProcess processService,
     IPDF pdfService,
     IProfile profileService,
     IRegister registerService,
     IPrefill prefillService,
     IInstance instanceService,
     IOptions <GeneralSettings> settings,
     IText textService,
     IHttpContextAccessor httpContextAccessor) : base(appResourcesService, logger, dataService, processService, pdfService, prefillService, instanceService, registerService, settings, profileService, textService, httpContextAccessor)
 {
     _validationHandler    = new ValidationHandler();
     _calculationHandler   = new CalculationHandler();
     _instantiationHandler = new InstantiationHandler(profileService, registerService);
 }