Пример #1
0
 public DivisionService(IDivisionQueryService divisionQueryService, IWizardRepository wizardRepository, ITransactionRepository transactionRepository, IDivisionRepository divisionRepository)
 {
     this._divisionQueryService  = divisionQueryService;
     this._wizardRepository      = wizardRepository;
     this._transactionRepository = transactionRepository;
     this._divisionRepository    = divisionRepository;
 }
Пример #2
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;
 }