Esempio n. 1
0
 public DivisionService(IDivisionQueryService divisionQueryService, IWizardRepository wizardRepository, ITransactionRepository transactionRepository, IDivisionRepository divisionRepository)
 {
     this._divisionQueryService  = divisionQueryService;
     this._wizardRepository      = wizardRepository;
     this._transactionRepository = transactionRepository;
     this._divisionRepository    = divisionRepository;
 }
Esempio n. 2
0
 public SeatService(ISeatQueryService seatQueryService, ISeatRepository seatRepository, ILogger <SeatService> logger, IWizardRepository wizardRepository, ISelectSeatTaskRepository selectSeatTaskRepository, ITransactionRepository transactionRepository, ISessionRepository sessionRepository)
 {
     this._seatQueryService         = seatQueryService;
     this._seatRepository           = seatRepository;
     this._logger                   = logger;
     this._wizardRepository         = wizardRepository;
     this._selectSeatTaskRepository = selectSeatTaskRepository;
     this._transactionRepository    = transactionRepository;
     this._sessionRepository        = sessionRepository;
 }
Esempio n. 3
0
 public WizardService(IWizardRepository wizardRepository,
                      IWizardQueryService wizardQueryService,
                      IWizardProfileRepository wizardPRofileRepository,
                      IWizardProfileQueryService wizardProfileQueryService,
                      ITransactionRepository transactionRepository,
                      ILogger <WizardService> logger,
                      IDivisionQueryService divisionQueryService,
                      IDivisionRepository divisionRepository)
 {
     this._wizardRepository          = wizardRepository;
     this._wizardQueryService        = wizardQueryService;
     this._wizardPRofileRepository   = wizardPRofileRepository;
     this._wizardProfileQueryService = wizardProfileQueryService;
     this._transactionRepository     = transactionRepository;
     this._logger = logger;
     this._divisionQueryService = divisionQueryService;
     this._divisionRepository   = divisionRepository;
 }
Esempio n. 4
0
 public ActivityService(ILogger <IActivityService> logger,
                        IActivityRepository activityRepository,
                        IActivityQueryService activityQueryService,
                        IWizardQueryService wizardQueryService,
                        IDivisionRepository divisionRepository,
                        IApplicantQueryService applicantQueryService, ITransactionRepository transactionRepository, IWizardProfileRepository wizardProfileRepository, IWizardRepository wizardRepository, IApplicantRepository applicantRepository)
 {
     this._logger                  = logger;
     this._activityRepository      = activityRepository;
     this._activityQueryService    = activityQueryService;
     this._wizardQueryService      = wizardQueryService;
     this._divisionRepository      = divisionRepository;
     this._applicantQueryService   = applicantQueryService;
     this._transactionRepository   = transactionRepository;
     this._wizardProfileRepository = wizardProfileRepository;
     this._wizardRepository        = wizardRepository;
     this._applicantRepository     = applicantRepository;
 }