Example #1
0
 public ShareController(IHostingEnvironment environment, IShareService shareService,
                        IShareTransactionService shareTransactionService, IMemberService memberService)
 {
     _hostingEnvironment      = environment;
     _shareService            = shareService;
     _shareTransactionService = shareTransactionService;
     _memberService           = memberService;
 }
Example #2
0
 public LoanController(IHostingEnvironment environment,
                       IShareTransactionService transactionService, IShareService shareService,
                       IMemberService memberService, ILoanTransactionService loanService, ILoanRepaymentTransactionService loanRepaymentService)
 {
     _hostingEnvironment      = environment;
     _shareTransactionService = transactionService;
     _shareService            = shareService;
     _memberService           = memberService;
     _loanService             = loanService;
     _loanRepaymentService    = loanRepaymentService;
 }