예제 #1
0
 public SavingsDepositController(
     ISavingsDepositService service,
     ISavingsDailyBalanceService savingsDailyBalanceService
     ) : base(service)
 {
     this.savingsDailyBalanceService = savingsDailyBalanceService;
 }
 public LoanBorrowerController(
     ILoanBorrowerService service,
     ISavingsDepositService savingsDepositService
     ) : base(service)
 {
     this.service = service;
     this.savingsDepositService = savingsDepositService;
 }
 public LoanApplicationController(
     ILoanApplicationService loanApplicationService,
     IBusinessService businessService,
     ILoanBorrowerService loanBorrowerService,
     ISavingsDepositService savingsDepositService,
     IFixedDepositService fixedDepositService,
     IExistingLoanService existingLoanService,
     IRepaymentScheduleService repaymentScheduleService,
     IBalanceSheetSummaryService balanceSheetSummaryService,
     IPersonalExpenseService personalExpenseService,
     IFinancialRatioService financialRatioService,
     ICashFlowService cashFlowService,
     IBuyOutLoanService buyOutLoanService,
     IImageGroupService imageGroupService,
     IUploadedImageRepository uploadedImageRepository,
     ICreditInvestigationService creditInvestigationService,
     ICollateralItemService collateralItemService,
     IBorrowerChildService borrowerChildService
     ) : base(loanApplicationService)
 {
     this.loanApplicationService     = loanApplicationService;
     this.businessService            = businessService;
     this.loanBorrowerService        = loanBorrowerService;
     this.savingsDepositService      = savingsDepositService;
     this.fixedDepositService        = fixedDepositService;
     this.existingLoanService        = existingLoanService;
     this.repaymentScheduleService   = repaymentScheduleService;
     this.balanceSheetSummaryService = balanceSheetSummaryService;
     this.personalExpenseService     = personalExpenseService;
     this.financialRatioService      = financialRatioService;
     this.cashFlowService            = cashFlowService;
     this.buyOutLoanService          = buyOutLoanService;
     this.imageGroupService          = imageGroupService;
     this.uploadedImageRepository    = uploadedImageRepository;
     this.creditInvestigationService = creditInvestigationService;
     this.collateralItemService      = collateralItemService;
     this.borrowerChildService       = borrowerChildService;
 }
 public SavingDepositController(ISavingsDepositService service, IUserService userService, IMapper mapper)
 {
     _savingsService = service;
     _userService    = userService;
     _mapper         = mapper;
 }