Пример #1
0
        public Auction(MarketPlace marketPlace)
        {
            if (marketPlace == null)
                throw new ArgumentNullException("marketPlace");

            this.marketPlace = marketPlace;
            Expires = marketPlace.AuctionLength;
        }
Пример #2
0
 public StarCluster()
 {
     this.solarSystems = new ObjectCollection<SolarSystem>(this);
     MarketPlace = new MarketPlace(this);
 }