コード例 #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
ファイル: StarCluster.cs プロジェクト: andy-uq/Echo
 public StarCluster()
 {
     this.solarSystems = new ObjectCollection<SolarSystem>(this);
     MarketPlace = new MarketPlace(this);
 }