Ejemplo n.º 1
0
 public GdprService(IConsentLogService consentLogService, IConsentService consentService, ICryptographyService cryptographyService, IUserService userService)
 {
     _consentLogService   = consentLogService;
     _consentService      = consentService;
     _cryptographyService = cryptographyService;
     _userService         = userService;
 }
Ejemplo n.º 2
0
 public GdprController(IConsentService consentService, IGdprModelFactory gdprModelFactory, IConsentGroupService consentGroupService, IModelMapper modelMapper, IConsentLogService consentLogService, ICryptographyService cryptographyService, IUserService userService)
 {
     _consentService      = consentService;
     _gdprModelFactory    = gdprModelFactory;
     _consentGroupService = consentGroupService;
     _modelMapper         = modelMapper;
     _consentLogService   = consentLogService;
     _cryptographyService = cryptographyService;
     _userService         = userService;
 }