Example #1
0
 public LogRepository(string ConnectionString, string Database)
 {
     _context = new DataAccumulatorContext(ConnectionString, Database);
 }
 public InstanceSettingsRepository(string ConnectionString, string Database)
 {
     _context = new DataAccumulatorContext(ConnectionString, Database);
 }
 public DataAccumulatorRepository(string ConnectionString, string Database, CollectedDataType collectedDataType)
 {
     _context           = new DataAccumulatorContext(ConnectionString, Database);
     _collectedDataType = collectedDataType;
 }