public RegistrantController(IRegistrantService registrantService, INomenclatureService nomenclatureService, IMapper mapper) { _mapper = mapper; _nomenclatureService = nomenclatureService; _registrantService = registrantService; }
public PersonalDataModel(IRegistrantService registrantService, IUserService userService, INomenclatureService nomenclatureService, IMapper mapper) { _registrantService = registrantService; _userService = userService; _nomenclatureService = nomenclatureService; _mapper = mapper; }
public WalletController(IWalletService walletService, IUserService userService, IRegistrantService registrantService, IAccountService accountService, ICurrencyService currencyService, IFinancialTransactionService financialTransactionService, IMapper mapper) { _registrantService = registrantService; _mapper = mapper; _userService = userService; _currencyService = currencyService; _accountService = accountService; _financialTransactionService = financialTransactionService; _walletService = walletService; }
public RegistrantController(ILogger <HomeController> logger, IRegistrantService registrantService, IMapper mapper) { _logger = logger; _mapper = mapper; _registrantService = registrantService; }