public InstantWinController( IConfigurationService configurationService, IParticipationService participationService, IValidationService validationService, IInstantWinService instantWinService) { _configurationService = configurationService; _participationService = participationService; _validationService = validationService; _instantWinService = instantWinService; }
public ParticipationService( IInstantWinService instantWinService, IPrizeManager prizeManager, IParticipantManager participantManager, IParticipationManager participationManager, ICountryManager countryManager, ISynchronizationService crmService) { _instantWinService = instantWinService; _participationManager = participationManager; _prizeManager = prizeManager; _participantManager = participantManager; _crmService = crmService; _countryManager = countryManager; }
public InstantWinController(IInstantWinService instantWinService) { _instantWinService = instantWinService; }