public GoVolunteerController(IOrganizationService organizationService,
                                     IGroupConnectorService groupConnectorService,
                                     IGatewayLookupService gatewayLookupService,
                                     IGoSkillsService skillsService,
                                     IGoVolunteerService goVolunteerService,
                                     IAttributeService attributeService,
                                     IConfigurationWrapper configurationWrapper,
                                     IUserImpersonationService userImpersonationService) : base(userImpersonationService)

        {
            _organizationService   = organizationService;
            _gatewayLookupService  = gatewayLookupService;
            _goVolunteerService    = goVolunteerService;
            _groupConnectorService = groupConnectorService;
            _skillsService         = skillsService;
            _attributeService      = attributeService;
            _configurationWrapper  = configurationWrapper;
        }