예제 #1
0
파일: LcboStore.cs 프로젝트: claq2/Spurious
 /// <summary>
 /// Initializes a new instance of the <see cref="LcboStore"/> class.
 /// </summary>
 public LcboStore()
 {
     GeoJSON = new Feature(new Point(new Position()));
     Id = 0;
     Name = String.Empty;
     Volumes = new AlcoholVolumes();
 }
예제 #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Subdivision"/> class.
 /// </summary>
 public Subdivision()
 {
     Id = 0;
     Population = null;
     GeoJSON = string.Empty;
     Name = string.Empty;
     CentreGeoJson = string.Empty;
     Volumes = new AlcoholVolumes();
     LcboStores = new List<LcboStore>();
 }