Ejemplo n.º 1
0
 internal XMLExternalShowRepository(XMLRepositoryFactory _factory)
 {
     factory = _factory;
     document = _factory.Document;
     externalsByComposite = new Dictionary<string, ExternalShow>();
     externalsByID = new Dictionary<long, ExternalShow>();
 }
 internal XMLExternalSourceRepository(XMLRepositoryFactory _factory)
 {
     factory = _factory;
     document = _factory.Document;
     cacheByTitle = new Dictionary<string, ExternalSource>();
     cacheByID = new Dictionary<long, ExternalSource>();
 }
Ejemplo n.º 3
0
 internal XMLShowRepository(XMLRepositoryFactory _factory, int _nextID)
 {
     factory = _factory;
     nextID = _nextID;
     document = _factory.Document;
     cacheByTitle = new Dictionary<string, Show>();
     cacheByID = new Dictionary<long, Show>();
 }
Ejemplo n.º 4
0
 internal XMLSeasonRepository(XMLRepositoryFactory _factory, int _nextID)
 {
     factory = _factory;
     nextID = _nextID;
     document = _factory.Document;
     cacheByID = new Dictionary<long, Season>();
     cacheByComposite = new Dictionary<string, Season>();
 }