コード例 #1
0
 public RenewalController(IDataSource dataSource, Veneka.Indigo.CardManagement.dal.ICardManagementDAL cardManagementDAL, IIntegrationController integration, IComsCore comsCore, IResponseTranslator translator)
 {
 }
コード例 #2
0
 public AccountLookupLogic(CardMangementService cardManagementService, IComsCore comsCore, IIntegrationController integration)
 {
     _cardManService = cardManagementService;
     _comsCore       = comsCore;
     _integration    = integration;
 }
コード例 #3
0
 public FeeChargeLogic(CardMangementService cardManagementService, IComsCore comsCore, IIntegrationController integration)
 {
     _cardManService = cardManagementService;
     _comsCore       = comsCore;
     _integration    = integration;
 }
コード例 #4
0
 public FundsLoadController(IDataSource dataSource, ICardManagementDAL cardManagementDAL, IIntegrationController integration, IComsCore comsCore, IResponseTranslator translator, ICardLimitDataAccess cardLimitDAL)
 {
     _cardManService = new CardMangementService(dataSource ?? new LocalDataSource(), cardManagementDAL, translator, cardLimitDAL);
     _integration    = integration ?? IntegrationController.Instance;
     _comsCore       = comsCore ?? COMSController.ComsCore;
 }