public DataHandler(ILog logger, IAdaptData dataAdapter, IPerformInsert performInsert, IPerformLookup performLookup) { this.logger = logger; this.dataAdapter = dataAdapter; this.performInsert = performInsert; this.performLookup = performLookup; }
public PerformLookup(IRepository oracleRepository, IAdaptData dataAdapter, IEnumerable <Cleansed_SLA_Report_Details> slaReportDetails, Config_Information configInformation, IEnumerable <Raw_Configuration_Data> rawConfigData) { this.oracleRepository = oracleRepository; this.slaReportDetails = slaReportDetails; this.configInformation = configInformation; this.dataAdapter = dataAdapter; this.rawConfigData = rawConfigData; }
public DataFilter(IAdaptData dataAdapter) { this.dataAdapter = dataAdapter; }
public PerformUpdate(IRepository oracleRepository, IAdaptData dataAdapter) { this.oracleRepository = oracleRepository; this.dataAdapter = dataAdapter; }