Beispiel #1
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;
 }
Beispiel #2
0
 public PsapDetails(Psap_Features features)
     : base(features)
 {
     this.FCC_ID         = features.Attributes.FccId == 0 ? 300000 + features.Attributes.ObjectID : features.Attributes.FccId;
     this.CountyName     = features.Attributes.CountyName;
     this.CountyFips     = features.Attributes.CountyFips;
     this.Agency         = features.Attributes.Agency;
     this.CoverageArea   = features.Attributes.CoverageAr;
     this.PsapComments   = features.Attributes.PsapCommen;
     this.OperatorPhone  = features.Attributes.OperatorPh;
     this.ContactPrefix  = features.Attributes.ContactPre;
     this.ContactFirst   = features.Attributes.ContactFir;
     this.ContactTitle   = features.Attributes.ContactTit;
     this.ContactPhone   = features.Attributes.ContactPh;
     this.SiteState      = features.Attributes.SiteState;
 }
Beispiel #3
0
 public PsapBoundary(Psap_Features features)
     : base(features.Attributes.PsapId, features.Attributes.ObjectID)
 {
 }