コード例 #1
0
 public DepositsService(UnitOfWork unitOfWork, IMapper mapper,
                        AccountsService accountsService, TransactionsService transactionsService, DateService dateService)
 {
     _unitOfWork          = unitOfWork;
     _mapper              = mapper;
     _accountsService     = accountsService;
     _transactionsService = transactionsService;
     _dateService         = dateService;
 }
コード例 #2
0
 public CreditsService(UnitOfWork unitOfWork, IMapper mapper,
                       AccountsService accountsService, TransactionsService transactionsService,
                       CreditCardsService creditCardsService, DateService dateService)
 {
     _unitOfWork          = unitOfWork;
     _mapper              = mapper;
     _accountsService     = accountsService;
     _transactionsService = transactionsService;
     _creditCardsService  = creditCardsService;
     _dateService         = dateService;
 }
コード例 #3
0
 public BankOperationsService(UnitOfWork unitOfWork, IMapper mapper,
                              DepositsService depositsService, AccountsService accountsService, CreditsService creditsService,
                              DateService dateService)
 {
     _unitOfWork      = unitOfWork;
     _mapper          = mapper;
     _depositsService = depositsService;
     _accountsService = accountsService;
     _creditsService  = creditsService;
     _dateService     = dateService;
 }
コード例 #4
0
 public TransactionsService(UnitOfWork unitOfWork, IMapper mapper, DateService dateService)
 {
     _unitOfWork  = unitOfWork;
     _mapper      = mapper;
     _dateService = dateService;
 }