Example #1
0
 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;
 }
Example #2
0
 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;
 }
Example #3
0
 public RateCenterBoundary(RateCenter_Features features)
     : base(features.Attributes.RCID, features.Attributes.ShapeFID)
 {
     this.Name = features.Attributes.Name;
 }