Exemplo n.º 1
0
 public LogRepository(string ConnectionString, string Database)
 {
     _context = new DataAccumulatorContext(ConnectionString, Database);
 }
Exemplo n.º 2
0
 public InstanceSettingsRepository(string ConnectionString, string Database)
 {
     _context = new DataAccumulatorContext(ConnectionString, Database);
 }
Exemplo n.º 3
0
 public DataAccumulatorRepository(string ConnectionString, string Database, CollectedDataType collectedDataType)
 {
     _context           = new DataAccumulatorContext(ConnectionString, Database);
     _collectedDataType = collectedDataType;
 }