Ejemplo n.º 1
0
 public AccountService(
     IAccountRepository accountRepository,
     IUserAccountService userAccountService,
     IAccountTypeService accountTypeService,
     IBankFamilyService bankFamilyService,
     IBankSubFamilyService bankSubFamilyService,
     IBankAgencyService bankAgencyService,
     IMapper mapper)
 {
     _accountRepository    = accountRepository;
     _userAccountService   = userAccountService;
     _accountTypeService   = accountTypeService;
     _bankFamilyService    = bankFamilyService;
     _bankSubFamilyService = bankSubFamilyService;
     _bankAgencyService    = bankAgencyService;
     _mapper = mapper;
 }
 public BankSubFamilyController(
     IBankSubFamilyService bankSubFamilyService
     )
 {
     _bankSubFamilyService = bankSubFamilyService;
 }