Esempio n. 1
0
        public TakingElement(BookingDatabase accomodationData,
                             TripAdvisorDatabase tripsData,
                             ShutterStockDatabase photosData,
                             OysterDatabase reviewData)
        {
            this.accomodationData = accomodationData;
            this.tripsData        = tripsData;
            this.photosData       = photosData;
            this.reviewData       = reviewData;

            if (bookDecrypter == null || photoDecrypter == null || tripDecrypter == null)
            {
                SetDecrypter();
            }
        }
 public OysterDatabaseIterator(OysterDatabase collection)
 {
     this.collection = collection;
     Reset();
 }
Esempio n. 3
0
 public OysterDatabaseIterator(OysterDatabase d)
 {
     it = d.Reviews.GetIterator();
 }
Esempio n. 4
0
 public OysterIterator(OysterDatabase database)
 {
     this.database = database;
 }
Esempio n. 5
0
 public OysterIterator(OysterDatabase database)
 {
     Database      = database;
     CurrentObject = null;
     ToCheck       = new Stack();
 }