public DynamicFormsController(
     IMapper mapper,
     IEmailService emailService,
     AppSettings appSettings,
     IHtmlHelperGeneratorService htmlHelperGeneratorService,
     ICookieService cookieService,
     IHostingEnvironment hostingEnvironment,
     IDynamicFormsPresentationService dynamicFormsPresentationService,
     IDynamicFormsApplicationServices dynamicFormsApplicationService)
     : base(mapper, emailService, appSettings)
 {
     Html                = htmlHelperGeneratorService.HtmlHelper("");
     _cookieService      = cookieService;
     _hostingEnvironment = hostingEnvironment;
     _dynamicFormsPresentationService = dynamicFormsPresentationService;
 }
Esempio n. 2
0
 public DynamicFormsPresentationService(IDynamicFormsApplicationServices dynamicFormsApplicationServices, IHtmlHelperGeneratorService htmlHelperGeneratorService)
 {
     _dynamicFormsApplicationServices = dynamicFormsApplicationServices;
     _htmlHelperGeneratorService      = htmlHelperGeneratorService;
 }