コード例 #1
0
ファイル: RateCenterDetails.cs プロジェクト: tah182/Comet
 public RateCenterDetails(RateCenter_Features features)
     : base(features)
 {
     this.Abbreviation = features.Attributes.Abbr;
         this.State = features.Attributes.State;
         this.OCName = features.Attributes.OCName;
         this.OCN = features.Attributes.OCN;
 }
コード例 #2
0
ファイル: Details911.cs プロジェクト: tah182/Comet
 public Details911(RateCenter_Features rcFeatures, Psap_Features psapFeatures, County_Features countyFeatures, string zip, bool showIcon)
 {
     if (rcFeatures != null)
         this.rcDetails = new RateCenterDetails(rcFeatures);
     if (psapFeatures != null)
         this.psapDetails = new PsapDetails(psapFeatures);
     if (countyFeatures != null)
         this.countyDetails = new CountyDetails(countyFeatures);
     this.zip = zip;
     this.showIcon = showIcon;
 }
コード例 #3
0
ファイル: RateCenterBoundary.cs プロジェクト: tah182/Comet
 public RateCenterBoundary(RateCenter_Features features)
     : base(features.Attributes.RCID, features.Attributes.ShapeFID)
 {
     this.Name = features.Attributes.Name;
 }