Example #1
0
 public DataHandler(ILog logger, IAdaptData dataAdapter, IPerformInsert performInsert, IPerformLookup performLookup)
 {
     this.logger        = logger;
     this.dataAdapter   = dataAdapter;
     this.performInsert = performInsert;
     this.performLookup = performLookup;
 }
Example #2
0
 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;
 }
Example #3
0
 public DataFilter(IAdaptData dataAdapter)
 {
     this.dataAdapter = dataAdapter;
 }
Example #4
0
 public PerformUpdate(IRepository oracleRepository, IAdaptData dataAdapter)
 {
     this.oracleRepository = oracleRepository;
     this.dataAdapter      = dataAdapter;
 }