コード例 #1
0
ファイル: LogRepository.cs プロジェクト: VoBilyk/Watcher
 public LogRepository(string ConnectionString, string Database)
 {
     _context = new DataAccumulatorContext(ConnectionString, Database);
 }
コード例 #2
0
 public InstanceSettingsRepository(string ConnectionString, string Database)
 {
     _context = new DataAccumulatorContext(ConnectionString, Database);
 }
コード例 #3
0
 public DataAccumulatorRepository(string ConnectionString, string Database, CollectedDataType collectedDataType)
 {
     _context           = new DataAccumulatorContext(ConnectionString, Database);
     _collectedDataType = collectedDataType;
 }