public RenewalController(IDataSource dataSource, Veneka.Indigo.CardManagement.dal.ICardManagementDAL cardManagementDAL, IIntegrationController integration, IComsCore comsCore, IResponseTranslator translator) { }
public AccountLookupLogic(CardMangementService cardManagementService, IComsCore comsCore, IIntegrationController integration) { _cardManService = cardManagementService; _comsCore = comsCore; _integration = integration; }
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; }