Exemplo n.º 1
0
 public CurrentCardManagementManager(ICurrentCardService currentCardService, ICorporateCurrentCardService corporateCurrentCardService, ILocalIndividualCurrentCardService localIndividualCurrentCardService, IForeignIndividualCurrentCardService foreignIndividualCurrentCardService, IIndividualCurrentCardService individualCurrentCardService)
 {
     _currentCardService                  = currentCardService;
     _corporateCurrentCardService         = corporateCurrentCardService;
     _localIndividualCurrentCardService   = localIndividualCurrentCardService;
     _foreignIndividualCurrentCardService = foreignIndividualCurrentCardService;
     _individualCurrentCardService        = individualCurrentCardService;
 }
Exemplo n.º 2
0
 public CorporateCurrentCardsController(ICorporateCurrentCardService corporateCurrentCardService)
 {
     _corporateCurrentCardService = corporateCurrentCardService;
 }