public AccountLookupLogic(CardMangementService cardManagementService, IComsCore comsCore, IIntegrationController integration)
 {
     _cardManService = cardManagementService;
     _comsCore       = comsCore;
     _integration    = integration;
 }
Example #2
0
 public FeeChargeLogic(CardMangementService cardManagementService, IComsCore comsCore, IIntegrationController integration)
 {
     _cardManService = cardManagementService;
     _comsCore       = comsCore;
     _integration    = integration;
 }
 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;
 }