Ejemplo 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;
 }
Ejemplo n.º 2
0
 public CurrentCardsController(ICurrentCardService currentCardService)
 {
     _currentCardService = currentCardService;
 }