コード例 #1
0
        public WithdrawalController(
            IUnitOfWork _unitOfWork,
            IWithdrawalsService _withdrawalService,
            IAccountService _accountService,
            IMT4Service _mt4Service)
        {
            this.withdrawalService = _withdrawalService;
            this.mt4Service = _mt4Service;
            this.accountService = _accountService;
            this.unitOfWork = _unitOfWork;

        }
コード例 #2
0
 public HomeController(IUserService _IUserService, IRechargeService _IRechargeService, IWithdrawalsService _IWithdrawalsService)
 {
     this.IUserService        = _IUserService;
     this.IRechargeService    = _IRechargeService;
     this.IWithdrawalsService = _IWithdrawalsService;
 }
コード例 #3
0
 public WithdrawalsController(IUnitOfWork _unitOfWork, IWithdrawalsService _withdrawalsService, IAccountService _accountService)
 {
     this.withdrawalsService = _withdrawalsService;
     this.unitOfWork         = _unitOfWork;
     this.accountService     = _accountService;
 }
 public WithdrawalsController(IWithdrawalsService withdrawalsService)
 {
     this.withdrawalsService = withdrawalsService;
 }