예제 #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);
 }