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