示例#1
0
文件: Auction.cs 项目: andy-uq/Echo
        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);
 }