예제 #1
0
 public CswRecord() {
     boundingBox = new BoundingBox();
 }
예제 #2
0
 public CswRecord(string sid, string stitle, string sabstract) {
     ID = sid;
     Abstract = sabstract;
     Title = stitle;
     boundingBox = new BoundingBox();
 }
예제 #3
0
 public CswRecord(string sid) {
     ID = sid;
     boundingBox = new BoundingBox();
 }