public RealEstate(Banker banker, Int32 price, Int32 baseRent, RentStrategy rentStrategy)
 {
     this.banker = banker;
     this.price = price;
     this.baseRent = baseRent;
     this.rentStrategy = rentStrategy;
 }
 public AdvanceToNearest(Board board, IEnumerable<Int32> indices, RentStrategy rentStrategy)
 {
     this.board = board;
     this.indices = indices;
     this.rentStrategy = rentStrategy;
 }