Example #1
0
 public CurrentCardManagementManager(ICurrentCardService currentCardService, ICorporateCurrentCardService corporateCurrentCardService, ILocalIndividualCurrentCardService localIndividualCurrentCardService, IForeignIndividualCurrentCardService foreignIndividualCurrentCardService, IIndividualCurrentCardService individualCurrentCardService)
 {
     _currentCardService                  = currentCardService;
     _corporateCurrentCardService         = corporateCurrentCardService;
     _localIndividualCurrentCardService   = localIndividualCurrentCardService;
     _foreignIndividualCurrentCardService = foreignIndividualCurrentCardService;
     _individualCurrentCardService        = individualCurrentCardService;
 }
Example #2
0
 public IndividualCurrentCardsController(IIndividualCurrentCardService individualCurrentCardService)
 {
     _individualCurrentCardService = individualCurrentCardService;
 }