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