Exemple #1
0
 public LoansController(
     IActionResultConverter actionResultConverter,
     ILoanAppService loanAppService,
     IMapper mapper)
 {
     _actionResultConverter = actionResultConverter;
     _loanAppService        = loanAppService;
     _mapper = mapper;
 }
Exemple #2
0
 public LoanController(
     ILoanAppService loanAppService,
     IGameAppService gameAppService,
     IFriendAppService friendAppService)
 {
     _loanAppService   = loanAppService;
     _gameAppService   = gameAppService;
     _friendAppService = friendAppService;
 }