/// <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; }
/// <summary> /// Initializes a new instance of the <see cref="SiteDetails" /> class. /// </summary> /// <param name="phone">phone.</param> /// <param name="fax">fax.</param> /// <param name="contactName">contactName.</param> /// <param name="email">email.</param> /// <param name="address">address.</param> public SiteDetails(string phone = default(string), string fax = default(string), string contactName = default(string), string email = default(string), AHJmailingAddress address = default(AHJmailingAddress)) { this.Phone = phone; this.Fax = fax; this.ContactName = contactName; this.Email = email; this.Address = address; }
/// <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; }