/// <summary>
 /// Initializes a new instance of the <see cref="AHJ" /> class.
 /// </summary>
 /// <param name="ahjType">ahjType.</param>
 /// <param name="ahjId">ahjId.</param>
 /// <param name="type">type.</param>
 /// <param name="fccId">fccId.</param>
 /// <param name="agency">agency.</param>
 /// <param name="phone">phone.</param>
 /// <param name="comments">comments.</param>
 /// <param name="coverage">coverage.</param>
 /// <param name="contactPerson">contactPerson.</param>
 /// <param name="mailingAddress">mailingAddress.</param>
 public AHJ(string ahjType = default(string), string ahjId = default(string), string type = default(string), string fccId = default(string), string agency = default(string), string phone = default(string), string comments = default(string), Coverage coverage = default(Coverage), ContactPerson contactPerson = default(ContactPerson), AHJmailingAddress mailingAddress = default(AHJmailingAddress))
 {
     this.AhjType        = ahjType;
     this.AhjId          = ahjId;
     this.Type           = type;
     this.FccId          = fccId;
     this.Agency         = agency;
     this.Phone          = phone;
     this.Comments       = comments;
     this.Coverage       = coverage;
     this.ContactPerson  = contactPerson;
     this.MailingAddress = mailingAddress;
 }
示例#2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="PSAPResponse" /> class.
 /// </summary>
 /// <param name="psapId">psapId.</param>
 /// <param name="fccId">fccId.</param>
 /// <param name="type">type.</param>
 /// <param name="count">count.</param>
 /// <param name="agency">agency.</param>
 /// <param name="phone">phone.</param>
 /// <param name="county">county.</param>
 /// <param name="coverage">coverage.</param>
 /// <param name="contactPerson">contactPerson.</param>
 /// <param name="siteDetails">siteDetails.</param>
 /// <param name="mailingAddress">mailingAddress.</param>
 public PSAPResponse(string psapId = default(string), string fccId = default(string), string type = default(string), int count = default(int), string agency = default(string), string phone = default(string), County county = default(County), Coverage coverage = default(Coverage), ContactPerson contactPerson = default(ContactPerson), SiteDetails siteDetails = default(SiteDetails), AHJmailingAddress mailingAddress = default(AHJmailingAddress))
 {
     this.PsapId         = psapId;
     this.FccId          = fccId;
     this.Type           = type;
     this.Count          = count;
     this.Agency         = agency;
     this.Phone          = phone;
     this.County         = county;
     this.Coverage       = coverage;
     this.ContactPerson  = contactPerson;
     this.SiteDetails    = siteDetails;
     this.MailingAddress = mailingAddress;
 }