/// <summary>
 /// Deprecated Method for adding a new object to the FAQs EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToFAQs(FAQs fAQs)
 {
     base.AddObject("FAQs", fAQs);
 }
 /// <summary>
 /// Create a new FAQs object.
 /// </summary>
 /// <param name="q_id">Initial value of the q_id property.</param>
 /// <param name="q_name">Initial value of the q_name property.</param>
 /// <param name="q_active">Initial value of the q_active property.</param>
 /// <param name="q_order">Initial value of the q_order property.</param>
 /// <param name="q_question">Initial value of the q_question property.</param>
 /// <param name="q_answer">Initial value of the q_answer property.</param>
 public static FAQs CreateFAQs(global::System.Int32 q_id, global::System.String q_name, global::System.Boolean q_active, global::System.Int32 q_order, global::System.String q_question, global::System.String q_answer)
 {
     FAQs fAQs = new FAQs();
     fAQs.q_id = q_id;
     fAQs.q_name = q_name;
     fAQs.q_active = q_active;
     fAQs.q_order = q_order;
     fAQs.q_question = q_question;
     fAQs.q_answer = q_answer;
     return fAQs;
 }