コード例 #1
0
 internal AliasedRecordCache(MetadataCache metadataCache)
 {
     _aliasedRecords   = new Dictionary <string, AliasedRecord>();
     _entitiesToIgnore = new List <string>();
     _aliasesToIgnore  = new List <string>();
     _metadataCache    = metadataCache;
 }
コード例 #2
0
 internal AliasedRecordCache(ConnectionManager connectionManager, MetadataCache metadataCache)
 {
     _aliasedRecords    = new Dictionary <string, EntityReference>();
     _entitiesToIgnore  = new List <string>();
     _aliasesToIgnore   = new List <string>();
     _connectionManager = connectionManager;
     _metadataCache     = metadataCache;
 }
コード例 #3
0
 static GlobalTestingContext()
 {
     ConnectionManager = new ConnectionManager();
     Metadata          = new MetadataCache();
     ButtonTexts       = new ButtonTexts();
     BrowserManager    = new BrowserManager(ButtonTexts);
     ErrorCodes        = new ErrorCodes();
 }