예제 #1
0
파일: Point.cs 프로젝트: tbr09/HotelProject
 public Point(geometry geometry, decimal rating, string name)
 {
     this.name     = name;
     this.geometry = geometry;
     this.rating   = rating;
 }
예제 #2
0
파일: Point.cs 프로젝트: tbr09/HotelProject
 public Point()
 {
     geometry = new geometry();
 }