Пример #1
0
 public InstantWinController(
     IConfigurationService configurationService,
     IParticipationService participationService,
     IValidationService validationService,
     IInstantWinService instantWinService)
 {
     _configurationService = configurationService;
     _participationService = participationService;
     _validationService    = validationService;
     _instantWinService    = instantWinService;
 }
Пример #2
0
 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;
 }
Пример #3
0
 public InstantWinController(IInstantWinService instantWinService)
 {
     _instantWinService = instantWinService;
 }