public CaseTemplateService(
     CaseTemplatePnDbContext dbcontext,
     IBaneDanmarkLaLocalizationService baneDanmarkLaLocalizationService,
     IHttpContextAccessor httpContextAccessor,
     IEFormCoreService core)
 {
     _dbContext = dbcontext;
     _baneDanmarkLaLocalizationService = baneDanmarkLaLocalizationService;
     _httpContextAccessor = httpContextAccessor;
     _core = core;
 }
 public BaneDanmarkLaPnSettingsService(ILogger <BaneDanmarkLaPnSettingsService> logger,
                                       IBaneDanmarkLaLocalizationService baneDanmarkLaLocalizationService,
                                       CaseTemplatePnDbContext dbContext,
                                       IPluginDbOptions <BaneDanmarkLaBaseSettings> options,
                                       IHttpContextAccessor httpContextAccessor)
 {
     _logger              = logger;
     _dbContext           = dbContext;
     _options             = options;
     _httpContextAccessor = httpContextAccessor;
     _baneDanmarkLaLocalizationService = baneDanmarkLaLocalizationService;
 }